javax.management
Class MBeanServerNotification
java.lang.Object
|
+--java.util.EventObject
|
+--javax.management.Notification
|
+--javax.management.MBeanServerNotification
- public class MBeanServerNotification
- extends Notification
Represents a notification emitted by the MBean server through the
MBeanServerDelegate MBean. The MBean Server emits the following types of
notifications: MBean registration, MBean de-registration.
To receive to MBeanServerNotifications, you need to be declared as listener
to the javax.management.MBeanServerDelegate MBean that represents the
MBeanServer. The ObjectName of the MBeanServerDelegate is:
JMImplementation:type=MBeanServerDelegate.
- Version:
- 1.8
- Author:
- Cosimo Vampo
- See Also:
- Serialized Form
Fields inherited from class java.util.EventObject |
source |
Constructor Summary |
MBeanServerNotification(java.lang.String type,
java.lang.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 inherited from class java.util.EventObject |
toString |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
REGISTRATION_NOTIFICATION
public static final java.lang.String REGISTRATION_NOTIFICATION
- Notification type denoting that an MBean has been registered. Value is
"JMX.mbean.registered".
UNREGISTRATION_NOTIFICATION
public static final java.lang.String UNREGISTRATION_NOTIFICATION
- Notification type denoting that an MBean has been unregistered. Value is
"JMX.mbean.unregistered".
MBeanServerNotification
public MBeanServerNotification(java.lang.String type,
java.lang.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.
- Parameters:
type
- A string denoting the type of the notification. Set it to
one these values: REGISTRATION_NOTIFICATION, UNREGISTRATION_NOTIFICATIONsource
- The MBeanServerNotification object responsible for
forwarding MBean server notification.objectName
- The object name of the MBean that caused
the notification.
getMBeanName
public ObjectName getMBeanName()
- Returns the object name of the MBean that caused the notification