| org.picocontainer.gems.jmx.DynamicMBeanFactory
All known Subclasses: org.picocontainer.gems.jmx.StandardMBeanFactory,
DynamicMBeanFactory | public interface DynamicMBeanFactory (Code) | | This factory is responsible for creating instances of DynamicMBean without being dependent on one particular
implementation or external dependency.
author: Michael Ward author: Jörg Schaible |
Method Summary | |
public DynamicMBean | create(Object componentInstance, Class management, MBeanInfo mBeanInfo) Create a DynamicMBean from instance and the provided
MBeanInfo .
Parameters: componentInstance - the instance of the Object being exposed for management. Parameters: management - the management interface (can be null ). Parameters: mBeanInfo - the explicitly provided management information (can be null ). |
create | public DynamicMBean create(Object componentInstance, Class management, MBeanInfo mBeanInfo)(Code) | | Create a DynamicMBean from instance and the provided
MBeanInfo .
Parameters: componentInstance - the instance of the Object being exposed for management. Parameters: management - the management interface (can be null ). Parameters: mBeanInfo - the explicitly provided management information (can be null ). the DynamicMBean. |
|
|