1 23 package com.sun.appserv.management.base; 24 25 import java.io.IOException ; 26 27 import javax.management.Attribute ; 28 import javax.management.AttributeList ; 29 import javax.management.AttributeNotFoundException ; 30 import javax.management.InvalidAttributeValueException ; 31 import javax.management.MBeanException ; 32 import javax.management.InstanceNotFoundException ; 33 import javax.management.ReflectionException ; 34 35 40 public interface StdAttributesAccess 41 { 42 public Object getAttribute( String name ) 43 throws InstanceNotFoundException , ReflectionException , 44 MBeanException , AttributeNotFoundException , IOException ; 45 46 public AttributeList getAttributes( String [] names ) 47 throws InstanceNotFoundException , ReflectionException , 48 IOException ; 49 50 public void setAttribute( Attribute attr ) 51 throws InstanceNotFoundException , ReflectionException , 52 MBeanException , AttributeNotFoundException , InvalidAttributeValueException , 53 IOException ; 54 55 public AttributeList setAttributes( AttributeList attrs ) 56 throws InstanceNotFoundException , ReflectionException , 57 IOException ; 58 } 59 | Popular Tags |