Package | Description |
---|---|
org.apache.commons.modeler |
The Modeler component of the Jakarta Commons subproject
offers convenient support for configuring and instantiating Model MBeans
(management beans), as described in the JMX Specification.
|
org.apache.commons.modeler.modules |
Implementation classes - should not be used directly.
|
Modifier and Type | Method and Description |
---|---|
ManagedBean |
Registry.findManagedBean(java.lang.Class beanClass,
java.lang.String type) |
ManagedBean |
Registry.findManagedBean(java.lang.Object bean,
java.lang.Class beanClass,
java.lang.String type)
Find or load metadata.
|
ManagedBean |
Registry.findManagedBean(java.lang.String name)
Find and return the managed bean definition for the specified
bean name, if any; otherwise return
null . |
Modifier and Type | Method and Description |
---|---|
void |
Registry.addManagedBean(ManagedBean bean)
Add a new bean metadata to the set of beans known to this registry.
|
void |
Registry.removeManagedBean(ManagedBean bean)
Remove an existing bean from the set of beans known to this registry.
|
Modifier and Type | Method and Description |
---|---|
ManagedBean |
MbeansDescriptorsIntrospectionSource.createManagedBean(Registry registry,
java.lang.String domain,
java.lang.Class realClass,
java.lang.String type)
XXX Find if the 'className' is the name of the MBean or
the real class ( I suppose first )
XXX Read (optional) descriptions from a .properties, generated
from source
XXX Deal with constructors
|
ManagedBean |
MbeansDescriptorsDynamicMBeanSource.createManagedBean(Registry registry,
java.lang.String domain,
java.lang.Object realObj,
java.lang.String type)
XXX Find if the 'className' is the name of the MBean or
the real class ( I suppose first )
XXX Read (optional) descriptions from a .properties, generated
from source
XXX Deal with constructors
|
Copyright © 2002–2020 The Apache Software Foundation. All rights reserved.