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

EJBWebServiceEndpointMdl

public class EJBWebServiceEndpointMdl extends WebServiceEndpointMdl
WebServiceEndpoint type rutime MBean for EJB web service endpoints. This MBean provides functionality required for content visualization.

Fields Summary
Constructors Summary
public EJBWebServiceEndpointMdl(String name, String mName, String regName, boolean isVirtual, boolean isejb)
Public constructor.

param
name Name of the web service endpoint
param
moduleName Name of the module (which this web service belongs)
param
regName registration name of the application or module
param
isVirtual true, if the module is stand alone, false otherwise
param
isEjb If this Web service endpoint is implemented as EJB or Servlet

        super(name,mName, regName, isVirtual, isejb);
    
public EJBWebServiceEndpointMdl(String name, String moduleName, String regName, String serverName, boolean isVirtual, boolean isejb)
Public constructor.

param
name Name of the web service endpoint
param
moduleName Name of the module (which this web service belongs)
param
regName registration name of the application or module
param
serverName Name of the server instance
param
isVirtual true, if the module is stand alone, false otherwise
param
isEjb If this Web service endpoint is implemented as EJB or Servlet

        super(name,moduleName, regName, serverName, isVirtual, isejb);
    
Methods Summary
public java.lang.StringgetMBeanName()
The MBean name of the J2EEManagedObject as specified in runtime-mbeans-descriptors.xml. This value is used in registering the MBean.

return
String MBeanName value of this Managed Object

             return EJB_MBEAN;