FileDocCategorySizeDatePackage
ManagedCustomResource.javaAPI DocGlassfish v2 API4568Fri May 04 22:33:56 BST 2007com.sun.enterprise.admin.server.core.mbean.config

ManagedCustomResource

public class ManagedCustomResource extends ConfigMBeanBase implements ConfigAttributeName.CustomResource
This 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[]
MAPLIST
MAPLIST array defines mapping between "external" name and its location in XML relatively base node
private static final String[]
ATTRIBUTES
ATTRIBUTES array specifies attributes descriptions in format defined for MBeanEasyConfig
private static final String[]
OPERATIONS
OPERATIONS 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.

param
instanceName The server instance name.
param
jndiName JNDI name associated with given resource

        this();
        initialize(ObjectNames.kCustomResourceType, new String[]{instanceName, jndiName});
    
Methods Summary