| java.lang.Object java.util.EventObject javax.management.Notification javax.management.MBeanServerNotification
MBeanServerNotification | public class MBeanServerNotification extends Notification (Code) | | A notification sent by the MBeanServer delegate when an MBean is
registered or unregisterd.
NOTE: The values from the spec are wrong, the real values are
REGISTRATION_NOTIFICATION = "JMX.mbean.registered"
UNREGISTRATION_NOTIFICATION = "JMX.mbean.registered"
Revisions:
20020315 Adrian Brock:
- Spec has wrong values for notification values
20020711 Adrian Brock:
author: Adrian Brock. version: $Revision: 57200 $ |
REGISTRATION_NOTIFICATION | final public static java.lang.String REGISTRATION_NOTIFICATION(Code) | | Notification type sent at MBean registration
|
UNREGISTRATION_NOTIFICATION | final public static java.lang.String UNREGISTRATION_NOTIFICATION(Code) | | Notification type sent at MBean registration
|
MBeanServerNotification | public MBeanServerNotification(String type, Object source, long sequence, ObjectName objectName)(Code) | | Construct a new MBeanServer notification
Parameters: type - the type of notification to construct Parameters: source - the source of the notification Parameters: sequence - the sequence number of the notification Parameters: objectName - the object name of the mbean being (un)registered |
getMBeanName | public ObjectName getMBeanName()(Code) | | Get the object name of the mbean being (un)registered
the object name |
toString | public String toString()(Code) | | human readable string. |
|
|