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

EJBMdl

public abstract class EJBMdl extends J2EEManagedObjectMdl

Fields Summary
private String
ejbModuleName
private String
applicationName
private String
ejbName
Constructors Summary
EJBMdl(String name, String moduleName, String appName)

    
          
        super(name,false, false, false);
        this.ejbModuleName = moduleName;
        this.applicationName = appName;
        if(J2EEModuleMdl.isStandAloneModule(applicationName))
           this.applicationName = "null";
        this.ejbName = name;
    
EJBMdl(String name, String moduleName, String appName, String serverName)

        super(name, serverName, false, false, false);
        this.ejbModuleName = moduleName;
        this.applicationName = appName;
        if(J2EEModuleMdl.isStandAloneModule(applicationName))
           this.applicationName = "null";
        this.ejbName = name;
    
Methods Summary
public java.lang.StringgetEJBModule()
Accessor method for the parent key

       return this.ejbModuleName;
    
public java.lang.StringgetJ2EEApplication()
Accessor method for the parent key

       return this.applicationName;