|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.management
|
Field Summary | |
---|---|
static String |
ATTRIBUTE_CHANGE
Notification type which indicates that the observed MBean attribute value has changed. |
Fields inherited from class javax.management.Notification |
---|
source |
Constructor Summary | |
---|---|
AttributeChangeNotification(Object source,
long sequenceNumber,
long timeStamp,
String msg,
String attributeName,
String attributeType,
Object oldValue,
Object newValue)
Constructs an attribute change notification object. |
Method Summary | |
---|---|
String |
getAttributeName()
Gets the name of the attribute which has changed. |
String |
getAttributeType()
Gets the type of the attribute which has changed. |
Object |
getNewValue()
Gets the new value of the attribute which has changed. |
Object |
getOldValue()
Gets the old value of the attribute which has changed. |
Methods inherited from class javax.management.Notification |
---|
getMessage, getSequenceNumber, getTimeStamp, getType, getUserData, setSequenceNumber, setSource, setTimeStamp, setUserData, toString |
Methods inherited from class java.util.EventObject |
---|
getSource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String ATTRIBUTE_CHANGE
jmx.attribute.change
.
Constructor Detail |
---|
public AttributeChangeNotification(Object source, long sequenceNumber, long timeStamp, String msg, String attributeName, String attributeType, Object oldValue, Object newValue)
source
- The notification producer, that is, the MBean the attribute belongs to.sequenceNumber
- The notification sequence number within the source object.timeStamp
- The date at which the notification is being sent.msg
- A String containing the message of the notification.attributeName
- A String giving the name of the attribute.attributeType
- A String containing the type of the attribute.oldValue
- An object representing value of the attribute before the change.newValue
- An object representing value of the attribute after the change.Method Detail |
---|
public String getAttributeName()
public String getAttributeType()
public Object getOldValue()
public Object getNewValue()