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

ManagedJMSResource

public class ManagedJMSResource extends ConfigMBeanBase implements ConfigAttributeName.JMSResource
Represents a JMS-resource. ObjectName of this MBean is: ias: component=jms-resource, instance-name=

Fields Summary
private static final String[]
MAPLIST
private static final String[]
ATTRIBUTES
private static final String[]
OPERATIONS
Constructors Summary
public ManagedJMSResource()
Default constructor sets MBean description tables


                     
       
    
        this.setDescriptions(MAPLIST, ATTRIBUTES, OPERATIONS);
    
public ManagedJMSResource(String instanceName, String jndiName)
Constructs Config MBean for JMS Resource.

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

        this(); //set description tables
        initialize(ObjectNames.kJmsResourceType, new String[]{instanceName, jndiName});

    
Methods Summary