| java.lang.Object java.util.EventObject javax.management.Notification javax.management.AttributeChangeNotification
ATTRIBUTE_CHANGE | final public static String ATTRIBUTE_CHANGE(Code) | | The AttributeChangeNotification notification type. It is
"jmx.attribute.change".
|
AttributeChangeNotification | public AttributeChangeNotification(Object source, long sequenceNumber, long timeStamp, String msg, String attributeName, String attributeType, Object oldValue, Object newValue)(Code) | | Contruct a new attribute change notification.
Parameters: source - the source of the notification. Parameters: sequenceNumber - the instance of this notification. Parameters: timeStamp - the time the notification was generated. Parameters: msg - a human readable form of the change. Parameters: attributeName - the name of the attribute. Parameters: attributeType - the type of the attribute. Parameters: oldValue - the old value of the attribute. Parameters: newValue - the new value of the attribute. |
getAttributeName | public String getAttributeName()(Code) | | Retrieves the name of the attribute.
the name of the attribute. |
getAttributeType | public String getAttributeType()(Code) | | Retrieves the type of the attribute.
the type of the attribute. |
getNewValue | public Object getNewValue()(Code) | | Retrieves the new value of the attribute.
the new value of the attribute. |
getOldValue | public Object getOldValue()(Code) | | Retrieves the old value of the attribute.
the old value of the attribute. |
toString | public String toString()(Code) | | human readable string. |
|
|