Package Summary  Overview Summary

class:MBeanServerDelegate [NONE]

field:DELEGATE_NAME [NONE]

  • DELEGATE_NAME

    public static final ObjectName DELEGATE_NAME
    Defines the default ObjectName of the MBeanServerDelegate.
    Since:
    1.6

constructor:MBeanServerDelegate() [NONE]

  • MBeanServerDelegate

    public MBeanServerDelegate()
    Create a MBeanServerDelegate object.

method:getMBeanServerId() [NONE]

method:getSpecificationName() [NONE]

method:getSpecificationVersion() [NONE]

method:getSpecificationVendor() [NONE]

method:getImplementationName() [NONE]

method:getImplementationVersion() [NONE]

method:getImplementationVendor() [NONE]

method:getNotificationInfo() [NONE]

  • getNotificationInfo

    public MBeanNotificationInfo[] getNotificationInfo()
    Description copied from interface: NotificationBroadcaster

    Returns an array indicating, for each notification this MBean may send, the name of the Java class of the notification and the notification type.

    It is not illegal for the MBean to send notifications not described in this array. However, some clients of the MBean server may depend on the array being complete for their correct functioning.

    Specified by:
    getNotificationInfo in interface NotificationBroadcaster
    Returns:
    the array of possible notifications.

method:addNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object) [NONE]

method:removeNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object) [NONE]

  • removeNotificationListener

    public void removeNotificationListener(NotificationListener listener,
                                           NotificationFilter filter,
                                           Object handback)
                                    throws ListenerNotFoundException
    
    Description copied from interface: NotificationEmitter

    Removes a listener from this MBean. The MBean must have a listener that exactly matches the given listener, filter, and handback parameters. If there is more than one such listener, only one is removed.

    The filter and handback parameters may be null if and only if they are null in a listener to be removed.

    Specified by:
    removeNotificationListener in interface NotificationEmitter
    Parameters:
    listener - A listener that was previously added to this MBean.
    filter - The filter that was specified when the listener was added.
    handback - The handback that was specified when the listener was added.
    Throws:
    ListenerNotFoundException - The listener is not registered with the MBean, or it is not registered with the given filter and handback.

method:removeNotificationListener(javax.management.NotificationListener) [NONE]

method:sendNotification(javax.management.Notification) [NONE]

  • sendNotification

    public 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.