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 SummaryModifier 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, waitMethods declared in interface javax.management.NotificationBroadcasteraddNotificationListener, getNotificationInfo, removeNotificationListener
- 
Field Details- 
DELEGATE_NAMEDefines the default ObjectName of the MBeanServerDelegate.- Since:
- 1.6
 
 
- 
- 
Constructor Details- 
MBeanServerDelegatepublic MBeanServerDelegate()Create a MBeanServerDelegate object.
 
- 
- 
Method Details- 
getMBeanServerIdReturns the MBean server agent identity.- Specified by:
- getMBeanServerIdin interface- MBeanServerDelegateMBean
- Returns:
- the identity.
 
- 
getSpecificationNameReturns the full name of the JMX specification implemented by this product.- Specified by:
- getSpecificationNamein interface- MBeanServerDelegateMBean
- Returns:
- the specification name.
 
- 
getSpecificationVersionReturns the version of the JMX specification implemented by this product.- Specified by:
- getSpecificationVersionin interface- MBeanServerDelegateMBean
- Returns:
- the specification version.
 
- 
getSpecificationVendorReturns the vendor of the JMX specification implemented by this product.- Specified by:
- getSpecificationVendorin interface- MBeanServerDelegateMBean
- Returns:
- the specification vendor.
 
- 
getImplementationNameReturns the JMX implementation name (the name of this product).- Specified by:
- getImplementationNamein interface- MBeanServerDelegateMBean
- Returns:
- the implementation name.
 
- 
getImplementationVersionReturns the JMX implementation version (the version of this product).- Specified by:
- getImplementationVersionin interface- MBeanServerDelegateMBean
- Returns:
- the implementation version.
 
- 
getImplementationVendorReturns the JMX implementation vendor (the vendor of this product).- Specified by:
- getImplementationVendorin interface- MBeanServerDelegateMBean
- Returns:
- the implementation vendor.
 
- 
sendNotificationEnables 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.
 
 
-