Methods Summary |
---|
public java.lang.String | getComponentName()Get name of the component for which Monitoring level has changed. The name
of the component is defined in the dtd for configuration.
return componentName;
|
public java.lang.String | getNewMonitoringLevel()Get new monitoring level for the component returned by method
getComponentName(). The monitoring levels are defined in the dtd for
configuration.
return newMonitoringLevel;
|
public java.lang.String | getOldMonitoringLevel()Get old monitoring level for the component returned by method
getComponentName(). The monitoring levels are defined in dtd for
configuration
return oldMonitoringLevel;
|
void | setComponentName(java.lang.String componentName)Set component name.
this.componentName = componentName;
|
void | setNewMonitoringLevel(java.lang.String newLevel)Set new monitoring level
this.newMonitoringLevel = newLevel;
|
void | setOldMonitoringLevel(java.lang.String oldLevel)Set old Monitoring level
oldMonitoringLevel = oldLevel;
|