1 22 package org.jboss.monitor.services; 23 24 import javax.management.ObjectName ; 25 26 import org.jboss.mx.util.ObjectNameFactory; 27 28 34 public interface JMXNotificationAppenderMBean 35 { 36 37 final ObjectName OBJECT_NAME = ObjectNameFactory.create("jboss.system:service=Logging,type=JMXNotificationAppender"); 38 39 void setObjectName(String objectName) throws Exception ; 40 String getObjectName(); 41 42 void setNotificationType(String type); 43 String getNotificationType(); 44 45 } 46 | Popular Tags |