AdminObjectResourceMdlpublic class AdminObjectResourceMdl extends J2EEResourceMdl
Fields Summary |
---|
private static String | MANAGED_OBJECT_TYPE | String | resourceAdapterCreates 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.String | getj2eeType()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.String | getresType()
return resType;
| public java.lang.String | getresourceAdapter()
return resourceAdapter;
|
|