ManagedCustomResourcepublic class ManagedCustomResource extends ConfigMBeanBase implements ConfigAttributeName.CustomResourceThis Config MBean represents a Custom resource.
It extends ConfigMBeanBase class which provides get/set attribute(s) and getMBeanInfo services according to text descriptions.
ObjectName of this MBean is:
ias: type=custom-resource, instance-name=, name= |
Fields Summary |
---|
private static final String[] | MAPLISTMAPLIST array defines mapping between "external" name and its location in XML relatively base node | private static final String[] | ATTRIBUTESATTRIBUTES array specifies attributes descriptions in format defined for MBeanEasyConfig | private static final String[] | OPERATIONSOPERATIONS array specifies operations descriptions in format defined for MBeanEasyConfig |
Constructors Summary |
---|
public ManagedCustomResource()Default constructor set MBean description tables
this.setDescriptions(MAPLIST, ATTRIBUTES, OPERATIONS);
| public ManagedCustomResource(String instanceName, String jndiName)Constructs Config MBean for Custom Resource.
this();
initialize(ObjectNames.kCustomResourceType, new String[]{instanceName, jndiName});
|
|