FileDocCategorySizeDatePackage
AdminObjectResourceMdl.javaAPI DocGlassfish v2 API4120Fri May 04 22:24:16 BST 2007com.sun.enterprise.management.model

AdminObjectResourceMdl

public class AdminObjectResourceMdl extends J2EEResourceMdl

Fields Summary
private static String
MANAGED_OBJECT_TYPE
String
resourceAdapter
Creates new AdminObjectResource
String
resType
String[]
propNames
String[]
propValues
Constructors Summary
public AdminObjectResourceMdl(String name, String raName, String resType, String[] propNames, String[] propValues)

                        
          
                                
        super(name);
        resourceAdapter = raName;
        this.resType = resType;
        this.propNames = propNames;
        this.propValues = propValues;
    
public AdminObjectResourceMdl(String name, String serverName, String raName, String resType, String[] propNames, String[] propValues)

        super(name, serverName);
        resourceAdapter = raName;
        this.resType = resType;
        this.propNames = propNames;
        this.propValues = propValues;
    
Methods Summary
public java.lang.Stringgetj2eeType()
The type of the J2EEManagedObject as specified by JSR77. The class that implements a specific type must override this method and return the appropriate type string.

        return MANAGED_OBJECT_TYPE;
    
public java.lang.String[]getpropNames()

        return propNames;
    
public java.lang.String[]getpropValues()

        return propValues;
    
public java.lang.StringgetresType()

        return resType;
    
public java.lang.StringgetresourceAdapter()

        return resourceAdapter;