1 22 package org.jboss.mx.util; 23 24 import javax.management.DynamicMBean ; 25 import javax.management.AttributeNotFoundException ; 26 import javax.management.MBeanException ; 27 import javax.management.ReflectionException ; 28 import javax.management.Attribute ; 29 import javax.management.InvalidAttributeValueException ; 30 import javax.management.AttributeList ; 31 import javax.management.MBeanInfo ; 32 33 37 public class DynamicMBeanSupport implements DynamicMBean 38 { 39 public Object getAttribute(String attribute) 40 throws AttributeNotFoundException , MBeanException , ReflectionException 41 { 42 return null; 43 } 44 45 public void setAttribute(Attribute attribute) 46 throws AttributeNotFoundException , InvalidAttributeValueException , 47 MBeanException , ReflectionException 48 { 49 } 50 51 public AttributeList getAttributes(String [] attributes) 52 { 53 return null; 54 } 55 56 public AttributeList setAttributes(AttributeList attributes) 57 { 58 return null; 59 } 60 61 public Object invoke(String actionName, 62 Object [] params, 63 String [] signature) 64 throws MBeanException , ReflectionException 65 { 66 return null; 67 } 68 69 public MBeanInfo getMBeanInfo() 70 { 71 return null; 72 } 73 } 74 | Popular Tags |