home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / management / MBeanServerConnection.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  3.3 KB  |  57 lines

  1. package javax.management;
  2.  
  3. import java.io.IOException;
  4. import java.util.Set;
  5.  
  6. public interface MBeanServerConnection {
  7.    ObjectInstance createMBean(String var1, ObjectName var2) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, IOException;
  8.  
  9.    ObjectInstance createMBean(String var1, ObjectName var2, ObjectName var3) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException, IOException;
  10.  
  11.    ObjectInstance createMBean(String var1, ObjectName var2, Object[] var3, String[] var4) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, IOException;
  12.  
  13.    ObjectInstance createMBean(String var1, ObjectName var2, ObjectName var3, Object[] var4, String[] var5) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException, IOException;
  14.  
  15.    void unregisterMBean(ObjectName var1) throws InstanceNotFoundException, MBeanRegistrationException, IOException;
  16.  
  17.    ObjectInstance getObjectInstance(ObjectName var1) throws InstanceNotFoundException, IOException;
  18.  
  19.    Set<ObjectInstance> queryMBeans(ObjectName var1, QueryExp var2) throws IOException;
  20.  
  21.    Set<ObjectName> queryNames(ObjectName var1, QueryExp var2) throws IOException;
  22.  
  23.    boolean isRegistered(ObjectName var1) throws IOException;
  24.  
  25.    Integer getMBeanCount() throws IOException;
  26.  
  27.    Object getAttribute(ObjectName var1, String var2) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException, IOException;
  28.  
  29.    AttributeList getAttributes(ObjectName var1, String[] var2) throws InstanceNotFoundException, ReflectionException, IOException;
  30.  
  31.    void setAttribute(ObjectName var1, Attribute var2) throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException, IOException;
  32.  
  33.    AttributeList setAttributes(ObjectName var1, AttributeList var2) throws InstanceNotFoundException, ReflectionException, IOException;
  34.  
  35.    Object invoke(ObjectName var1, String var2, Object[] var3, String[] var4) throws InstanceNotFoundException, MBeanException, ReflectionException, IOException;
  36.  
  37.    String getDefaultDomain() throws IOException;
  38.  
  39.    String[] getDomains() throws IOException;
  40.  
  41.    void addNotificationListener(ObjectName var1, NotificationListener var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException, IOException;
  42.  
  43.    void addNotificationListener(ObjectName var1, ObjectName var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException, IOException;
  44.  
  45.    void removeNotificationListener(ObjectName var1, ObjectName var2) throws InstanceNotFoundException, ListenerNotFoundException, IOException;
  46.  
  47.    void removeNotificationListener(ObjectName var1, ObjectName var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException, ListenerNotFoundException, IOException;
  48.  
  49.    void removeNotificationListener(ObjectName var1, NotificationListener var2) throws InstanceNotFoundException, ListenerNotFoundException, IOException;
  50.  
  51.    void removeNotificationListener(ObjectName var1, NotificationListener var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException, ListenerNotFoundException, IOException;
  52.  
  53.    MBeanInfo getMBeanInfo(ObjectName var1) throws InstanceNotFoundException, IntrospectionException, ReflectionException, IOException;
  54.  
  55.    boolean isInstanceOf(ObjectName var1, String var2) throws InstanceNotFoundException, IOException;
  56. }
  57.