| org.apache.cxf.management.InstrumentationManager
InstrumentationManager | public interface InstrumentationManager (Code) | | InstrumentationManager interface for the instrumentations query, register
and unregister
|
getMBeanServer | MBeanServer getMBeanServer()(Code) | | Get the MBeanServer which hosts managed components
NOTE: if the configuration is not set the JMXEnabled to be true, this method
will return null
the MBeanServer |
register | ObjectName register(ManagedComponent component, boolean forceRegistration) throws JMException(Code) | | Register a component with management infrastructure. Component will supply registration name.
Parameters: component - Parameters: forceRegistration - if set to true, then component will be registered despite existing component. name used to register the component throws: JMException - |
register | void register(Object obj, ObjectName name) throws JMException(Code) | | Registers object with management infrastructure with a specific name. Object must be annotated or
implement standard MBean interface.
Parameters: obj - Parameters: name - throws: JMException - |
register | void register(Object obj, ObjectName name, boolean forceRegistration) throws JMException(Code) | | Registers object with management infrastructure with a specific name. Object must be annotated or
implement standard MBean interface.
Parameters: obj - Parameters: name - Parameters: forceRegistration - if set to true, then component will be registered despite existing component. throws: JMException - |
shutdown | void shutdown()(Code) | | Cleans up and shutsdown management infrastructure.
|
|
|