com.caucho.j2ee.deployserver
Class DeploymentServlet

java.lang.Object
  extended by javax.servlet.GenericServlet
      extended by com.caucho.j2ee.deployserver.DeploymentServlet
All Implemented Interfaces:
java.io.Serializable, Servlet, ServletConfig

public class DeploymentServlet
extends GenericServlet

Manager for the deployments.

See Also:
Serialized Form

Constructor Summary
DeploymentServlet()
           
 
Method Summary
 void init()
          Initialize the servlet.
 void service(ServletRequest req, ServletResponse res)
          Serves the deployment.
 
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeploymentServlet

public DeploymentServlet()
Method Detail

init

public void init()
          throws ServletException
Description copied from class: GenericServlet
Initialize the servlet. Servlets should override this method if they need any initialization like opening pooled database connections.

Overrides:
init in class GenericServlet
Throws:
ServletException

service

public void service(ServletRequest req,
                    ServletResponse res)
             throws java.io.IOException,
                    ServletException
Serves the deployment.

Parameters:
req - request information. Normally servlets will cast this to HttpServletRequest
res - response information. Normally servlets will cast this to HttpServletRequest
Throws:
java.io.IOException
ServletException