Package org.xwiki.management
Interface JMXBeanRegistration
-
@Role public interface JMXBeanRegistration
Registers MBeans against the default platform MBean Server.- Since:
- 2.4M2
- Version:
- $Id: 1af06da4b694985593a048a05fc70dffa783b3d7 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
registerMBean(Object mbean, String name)
void
unregisterMBean(String name)
-
-
-
Method Detail
-
registerMBean
void registerMBean(Object mbean, String name)
- Parameters:
mbean
- the mbean instance to registername
- the name under which to register, for example "type=Velocity,domain=Engines,name=someName". Note that the domain is registered by default and shouldn't be passed
-
unregisterMBean
void unregisterMBean(String name)
- Parameters:
name
- the name under which to register, for example "type=Velocity,domain=Engines,name=someName". Note that the domain is registered by default and shouldn't be passed- Since:
- 6.4RC1
-
-