1 23 package com.sun.appserv.management.base; 24 25 import java.util.Map ; 26 import java.io.IOException ; 27 28 import javax.management.ObjectName ; 29 import javax.management.MBeanInfo ; 30 import javax.management.IntrospectionException ; 31 import javax.management.ReflectionException ; 32 import javax.management.InstanceNotFoundException ; 33 import javax.management.MBeanException ; 34 35 import com.sun.appserv.management.DomainRoot; 36 import com.sun.appserv.management.client.ProxyFactory; 37 import com.sun.appserv.management.client.ConnectionSource; 38 39 40 47 public interface Extra extends StdAttributesAccess 48 { 49 55 56 61 public String [] getAttributeNames( ); 62 63 66 public ObjectName getObjectName(); 67 68 71 public MBeanInfo getMBeanInfo(); 72 73 74 77 public boolean getMBeanInfoIsInvariant(); 78 79 87 public String getInterfaceName(); 88 89 92 public ProxyFactory getProxyFactory(); 93 94 97 public ConnectionSource getConnectionSource(); 98 99 100 106 public Map <String ,Object > getAllAttributes(); 107 108 115 public boolean checkValid(); 116 117 } 118 | Popular Tags |