API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management. AttributeChangeNotification View Source
Author(s)
Since
1.5
Version
Serial
Hierarchy
 Object
      EventObject
          Notification
              AttributeChangeNotification
Implements
Subclasses
Description
public class AttributeChangeNotification
  Provides definitions of the attribute change notifications sent by MBeans.
See also:   
Constructors
public AttributeChangeNotification (Object source, long sequenceNumber, long timeStamp, String msg, String attributeName, String attributeType, Object oldValue, Object newValue)
  Constructs an attribute change notification object.
Methods
Hide/Show inherited methods
public String getAttributeName ()
  Gets the name of the attribute which has changed.
public String getAttributeType ()
  Gets the type of the attribute which has changed.
public String getMessage () [Inherited From Notification]
  Get the notification message.
public Object getNewValue ()
  Gets the new value of the attribute which has changed.
public Object getOldValue ()
  Gets the old value of the attribute which has changed.
public long getSequenceNumber () [Inherited From Notification]
  Get the notification sequence number.
public Object getSource () [Inherited From EventObject]
  The object on which the Event initially occurred.
public long getTimeStamp () [Inherited From Notification]
  Get the notification timestamp.
public String getType () [Inherited From Notification]
  Get the notification type.
public Object getUserData () [Inherited From Notification]
  Get the user data.
public void setSequenceNumber (long sequenceNumber) [Inherited From Notification]
  Set the notification sequence number.
public void setSource (Object source) [Inherited From Notification]
  Sets the source.
public void setTimeStamp (long timeStamp) [Inherited From Notification]
  Set the notification timestamp.
public void setUserData (Object userData) [Inherited From Notification]
  Set the user data.
public String toString () [Inherited From Notification]
  Returns a String representation of this notification.
Fields
Hide/Show inherited fields
publicfinalstatic String ATTRIBUTE_CHANGE = "jmx.attribute.change"
  Notification type which indicates that the observed MBean attribute value has changed.
protected Object source [Inherited From Notification]
  This field hides the EventObject.source field in the parent class to make it non-transient and therefore part of the serialized form.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar