package javax.management;
import org.jboss.mx.util.JBossNotificationBroadcasterSupport;
public class NotificationBroadcasterSupport implements NotificationEmitter
{
private JBossNotificationBroadcasterSupport delegate = new JBossNotificationBroadcasterSupport();
public NotificationBroadcasterSupport()
{
}
public void addNotificationListener(NotificationListener listener,
NotificationFilter filter,
Object handback)
{
delegate.addNotificationListener(listener, filter, handback);
}
public void removeNotificationListener(NotificationListener listener)
throws ListenerNotFoundException
{
delegate.removeNotificationListener(listener);
}
public void removeNotificationListener(NotificationListener listener,
NotificationFilter filter,
Object handback)
throws ListenerNotFoundException
{
delegate.removeNotificationListener(listener, filter, handback);
}
public MBeanNotificationInfo[] getNotificationInfo()
{
return delegate.getNotificationInfo();
}
public void sendNotification(Notification notification)
{
delegate.sendNotification(notification);
}
protected void handleNotification(NotificationListener listener,
Notification notification,
Object handback)
{
delegate.handleNotification(listener, notification, handback);
}
}