Method Summary |
|
public static MBeanServer | createMBeanServer() Return a new object implementing the MBeanServer interface with a
standard default domain name. |
public static MBeanServer | createMBeanServer(String domain) Return a new object implementing the MBeanServer interface with the
specified default domain name. |
public static ArrayList | findMBeanServer(String agentId) Return a list of objects implementing the MBeanServer interface.
This static method allows a user to retrieve references on MBeanServer
which have been instantiated in the Java Virtual Machine.
Parameters: agentId - The agent identifier of the MBeanServer to retrieve.If this parameter is null, all MBeanServer present inthe JVM are returned. |
public static MBeanServer | newMBeanServer() Returns a new MBeanServer Object without storing the reference to the
created object with standard default domain name. |
public static MBeanServer | newMBeanServer(String domain) Returns a new MBeanServer Object without storing the reference to the
created object with the specified domain name. |
public static void | releaseMBeanServer(MBeanServer mbeanServer) Releases all the internal references for a MBeanServer object, thus
making the MBeanServer instance an eligible object for Garbage Collection. |