Methods Summary |
---|
public java.lang.Class | getServletClass()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 EjbWebServiceServlet.class;
|
public java.util.Map | getServletInitParams()Returns a Map containing name and value pairs to be used in preparing
the init params in the servlet's ServletConfig object.
return null;
|
public java.lang.String | getServletName()Returns the name of the servlet that the container should assign when it
adds a servlet to a web module.
return EJB_SERVLET_NAME;
|