FileDocCategorySizeDatePackage
EjbWebServiceServletInfo.javaAPI DocGlassfish v2 API3262Fri May 04 22:36:02 BST 2007com.sun.enterprise.web

EjbWebServiceServletInfo

public class EjbWebServiceServletInfo extends Object implements AdHocServletInfo
Implementation of AdHocServletInfo interface providing information specific to the ad-hoc servlet responsible for servicing HTTP requests for EJB webservice endpoints.
author
Jan Luehe

Fields Summary
public static final String
EJB_SERVLET_NAME
Constructors Summary
Methods Summary
public java.lang.ClassgetServletClass()
Returns the class type of the servlet that should be created to process requests. Note that the class must represent a subclass of HttpServlet.

return
The servlet class


                                      
       
        return EjbWebServiceServlet.class;
    
public java.util.MapgetServletInitParams()
Returns a Map containing name and value pairs to be used in preparing the init params in the servlet's ServletConfig object.

return
Map containing the servlet init parameters

        return null;
    
public java.lang.StringgetServletName()
Returns the name of the servlet that the container should assign when it adds a servlet to a web module.

return
The servlet name

        return EJB_SERVLET_NAME;