1 22 package org.jboss.monitor.services; 23 24 import javax.management.ObjectName ; 25 26 import org.jboss.system.ListenerServiceMBean; 27 28 34 public interface NotificationListenerMBean extends ListenerServiceMBean 35 { 36 37 long getNotificationCount(); 38 39 40 void setDynamicSubscriptions(boolean dynamicSubscriptions); 41 boolean getDynamicSubscriptions(); 42 43 44 void setNotificationListener(ObjectName notificationListener); 45 ObjectName getNotificationListener(); 46 47 48 void setLogLevel(String logLevel); 49 String getLogLevel(); 50 51 } 52 | Popular Tags |