- java.lang.Object
- 
- javax.management.MBeanServerDelegate
 
- 
- All Implemented Interfaces:
- MBeanServerDelegateMBean,- NotificationBroadcaster,- NotificationEmitter
 
 public class MBeanServerDelegate extends Object implements MBeanServerDelegateMBean, NotificationEmitter Represents the MBean server from the management point of view. The MBeanServerDelegate MBean emits the MBeanServerNotifications when an MBean is registered/unregistered in the MBean server.- Since:
- 1.5
 
- 
- 
Field SummaryFields Modifier and Type Field Description static ObjectNameDELEGATE_NAMEDefines the default ObjectName of the MBeanServerDelegate.
 - 
Constructor SummaryConstructors Constructor Description MBeanServerDelegate()Create a MBeanServerDelegate object.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetImplementationName()Returns the JMX implementation name (the name of this product).StringgetImplementationVendor()Returns the JMX implementation vendor (the vendor of this product).StringgetImplementationVersion()Returns the JMX implementation version (the version of this product).StringgetMBeanServerId()Returns the MBean server agent identity.StringgetSpecificationName()Returns the full name of the JMX specification implemented by this product.StringgetSpecificationVendor()Returns the vendor of the JMX specification implemented by this product.StringgetSpecificationVersion()Returns the version of the JMX specification implemented by this product.voidsendNotification(Notification notification)Enables the MBean server to send a notification.- 
Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods declared in interface javax.management.NotificationBroadcasteraddNotificationListener, getNotificationInfo, removeNotificationListener
 - 
Methods declared in interface javax.management.NotificationEmitterremoveNotificationListener
 
- 
 
- 
- 
- 
Field Detail- 
DELEGATE_NAMEpublic static final ObjectName DELEGATE_NAME Defines the default ObjectName of the MBeanServerDelegate.- Since:
- 1.6
 
 
- 
 - 
Method Detail- 
getMBeanServerIdpublic String getMBeanServerId() Returns the MBean server agent identity.- Specified by:
- getMBeanServerIdin interface- MBeanServerDelegateMBean
- Returns:
- the identity.
 
 - 
getSpecificationNamepublic String getSpecificationName() Returns the full name of the JMX specification implemented by this product.- Specified by:
- getSpecificationNamein interface- MBeanServerDelegateMBean
- Returns:
- the specification name.
 
 - 
getSpecificationVersionpublic String getSpecificationVersion() Returns the version of the JMX specification implemented by this product.- Specified by:
- getSpecificationVersionin interface- MBeanServerDelegateMBean
- Returns:
- the specification version.
 
 - 
getSpecificationVendorpublic String getSpecificationVendor() Returns the vendor of the JMX specification implemented by this product.- Specified by:
- getSpecificationVendorin interface- MBeanServerDelegateMBean
- Returns:
- the specification vendor.
 
 - 
getImplementationNamepublic String getImplementationName() Returns the JMX implementation name (the name of this product).- Specified by:
- getImplementationNamein interface- MBeanServerDelegateMBean
- Returns:
- the implementation name.
 
 - 
getImplementationVersionpublic String getImplementationVersion() Returns the JMX implementation version (the version of this product).- Specified by:
- getImplementationVersionin interface- MBeanServerDelegateMBean
- Returns:
- the implementation version.
 
 - 
getImplementationVendorpublic String getImplementationVendor() Returns the JMX implementation vendor (the vendor of this product).- Specified by:
- getImplementationVendorin interface- MBeanServerDelegateMBean
- Returns:
- the implementation vendor.
 
 - 
sendNotificationpublic void sendNotification(Notification notification) Enables the MBean server to send a notification. If the passed notification has a sequence number lesser or equal to 0, then replace it with the delegate's own sequence number.- Parameters:
- notification- The notification to send.
 
 
- 
 
-