Represents the Mbean server from the management point of view.
The MBeanServerDelegate MBean emits the MBeanServerNotifications when an MBean is
registered/deregistered in the MBean server.
author: Young Yang
addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) Enables to add a listener to a registered MBean.
Parameters: listener - The listener object which will handle the notifications emitted by the registered MBean. Parameters: filter - The filter object.
Enables to add a listener to a registered MBean.
Parameters: listener - The listener object which will handle the notifications emitted by the registered MBean. Parameters: filter - The filter object. If filter is null, no filtering will be performed before handling notifications. Parameters: handback - The context to be sent to the listener when a notification is emitted. exception: IllegalArgumentException - Listener parameter is null.
Returns a NotificationInfo object contaning the name of the Java class of the notification
and the notification types sent.
as extension, add the ExtendedMBeanServerNotification
Enables to remove a listener from a registered MBean.
Parameters: listener - The listener object which will handle the notifications emitted by the registered MBean.This method will remove all the information related to this listener. exception: ListenerNotFoundException - The listener is not registered in the MBean.