1 7 8 9 package javax.management; 10 11 12 18 public interface DynamicMBean { 19 20 21 34 public Object getAttribute(String attribute) throws AttributeNotFoundException , 35 MBeanException , ReflectionException ; 36 37 50 public void setAttribute(Attribute attribute) throws AttributeNotFoundException , 51 InvalidAttributeValueException , MBeanException , ReflectionException ; 52 53 62 public AttributeList getAttributes(String [] attributes); 63 64 74 public AttributeList setAttributes(AttributeList attributes); 75 76 92 public Object invoke(String actionName, Object params[], String signature[]) 93 throws MBeanException , ReflectionException ; 94 95 102 public MBeanInfo getMBeanInfo(); 103 104 } 105 | Popular Tags |