| org.jpox.management.ManagementServer
ManagementServer | public interface ManagementServer (Code) | | Management Server for MBeans.
Plugin Extension Point: org.jpox.management_server
The implementation of this class must have a default public constructor
|
registerMBean | void registerMBean(Object mbean, String name)(Code) | | Register a MBean into the MBeanServer
Parameters: mbean - the MBean instance Parameters: name - the mbean name |
start | void start()(Code) | | Start the Management Server. If this operation is invoked
while the server is started, this operation is ignored.
This operation can also connect to a remote MBeanServer,
instead of creating a new MBeanServer instance. This depends
of the configuration.
|
stop | void stop()(Code) | | Stop the Management Server. If this operation is invoked
while the server is stop, this operation is ignored
This operation can also disconnect from a remote MBeanServer,
instead of destroying a MBeanServer instance. This depends
of the configuration.
|
unregisterMBean | void unregisterMBean(String name)(Code) | | Unregister a MBean from the MBeanServer
Parameters: name - the mbean name |
|
|