Methods Summary |
---|
public boolean | existsMBean(java.lang.String target, java.lang.String name)Returns if the given MBean is referenced from a given target.
|
public boolean | isMBeanEnabled(java.lang.String target, java.lang.String name)Returns if the given MBean is referenced from a given target and is enabled.
|
public java.util.List | listMBeanConfigObjectNames(java.lang.String target)Returns access to get more information about the custom MBeans referenced from a
server instance. Every Config MBean is a wrapper over the domain.xml element and
the ObjectName of this MBean can allow clients to get more information such as ObjectType of
the custom MBean, by standard JMX calls. This method returns such ObjectNames. This method
is more useful with a caveat that getting more information from the server results
in additional calls to the server.
|
public java.util.List | listMBeanConfigObjectNames(java.lang.String target, int type, boolean state)A convenience method to take care of various client requests. It resembles the function
of a filter. Useful in getting the List of MBeans that for example are of object-type "USER_DEFINED"
and are not enabled. This is a more general purpose query interface.
|
public java.util.List | listMBeanNames(java.lang.String target)Returns the collection of all the custom MBeans for a target as a List of Strings. Each element
in the list the name of the custom MBean created. Thus for a standalone instance
this method would return all the MBeans that are referenced from it.
|