EJBMdlpublic 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.String | getEJBModule()Accessor method for the parent key
return this.ejbModuleName;
| public java.lang.String | getJ2EEApplication()Accessor method for the parent key
return this.applicationName;
|
|