1 22 package org.jboss.management.j2ee; 23 24 import javax.management.ObjectName ; 25 26 31 public interface J2EEManagedObjectMBean 32 { 33 35 String getobjectName(); 36 37 boolean isstateManageable(); 38 39 boolean isstatisticsProvider(); 40 41 boolean iseventProvider(); 42 43 void setparent(String parent) throws InvalidParentException; 44 45 String getparent(); 46 47 49 void addChild(ObjectName child); 50 51 void removeChild(ObjectName child); 52 53 } 54 | Popular Tags |