home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / jmx.jar / javax / management / MBeanServer.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-10-28  |  3.7 KB  |  67 lines

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