/** MBeanNotification support - delegates to broadcaster. */
 public void removeNotificationListener(
     NotificationListener listener, NotificationFilter filter, Object handback)
     throws ListenerNotFoundException {
   broadcaster.removeNotificationListener(listener, filter, handback);
 }
 public void removeNotificationListener(
     NotificationListener listener, NotificationFilter filter, Object handback)
     throws RuntimeOperationsException, ListenerNotFoundException {
   m_generalBroadcaster.removeNotificationListener(listener, filter, handback);
 }
 /** MBeanNotification support - delegates to broadcaster. */
 public void removeNotificationListener(NotificationListener listener)
     throws ListenerNotFoundException {
   broadcaster.removeNotificationListener(listener);
 }
 public void removeNotificationListener(NotificationListener listener)
     throws RuntimeOperationsException, ListenerNotFoundException {
   m_generalBroadcaster.removeNotificationListener(listener);
 }