API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.management. MBeanServerNotification View Source
Author(s)
Since
1.5
Version
Serial
Hierarchy
 Object
      EventObject
          Notification
              MBeanServerNotification
Implements
Subclasses
Description
public class MBeanServerNotification
  Represents a notification emitted by the MBean server through the MBeanServerDelegate MBean.
See also:   
Constructors
public MBeanServerNotification (String type, Object source, long sequenceNumber, ObjectName objectName)
  Creates an MBeanServerNotification object specifying object names of the MBeans that caused the notification and the specified notification type.
Methods
Hide/Show inherited methods
public ObjectName getMBeanName ()
  Returns the object name of the MBean that caused the notification.
public String getMessage () [Inherited From Notification]
  Get the notification message.
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 REGISTRATION_NOTIFICATION = "JMX.mbean.registered"
  Notification type denoting that an MBean has been registered.
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.
publicfinalstatic String UNREGISTRATION_NOTIFICATION = "JMX.mbean.unregistered"
  Notification type denoting that an MBean has been unregistered.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar