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

AppClientModuleMdl

public class AppClientModuleMdl extends J2EEModuleMdl

Fields Summary
private String
APPCLIENTMODULE
private String
appClientName
private String
applicationName
Constructors Summary
public AppClientModuleMdl(com.sun.enterprise.management.util.J2EEModuleCallBack module)


       
        super(module);
        appClientName = module.getName();
        applicationName = module.getParentName();
        if(isStandAloneModule(applicationName))
           this.applicationName = "null";
    
Methods Summary
public voidaddVm(java.lang.String vmId)

        super.addVm(vmId);
    
public java.lang.StringgetJ2EEApplication()
Accessor method for the parent key

        return this.applicationName;
    
public java.lang.StringgetModuleName()

        // I am not sure, if I should be returning this.
        return this.appClientName;
    
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 APPCLIENTMODULE;