com.caucho.server.security
Class FormLoginServlet

java.lang.Object
  extended by javax.servlet.GenericServlet
      extended by com.caucho.server.security.FormLoginServlet
All Implemented Interfaces:
java.io.Serializable, Servlet, ServletConfig

public class FormLoginServlet
extends GenericServlet

See Also:
Serialized Form

Constructor Summary
FormLoginServlet()
           
 
Method Summary
 void service(ServletRequest request, ServletResponse response)
          Service a request.
 
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FormLoginServlet

public FormLoginServlet()
Method Detail

service

public void service(ServletRequest request,
                    ServletResponse response)
             throws ServletException,
                    java.io.IOException
Description copied from interface: Servlet
Service a request. Since the servlet engine is multithreaded, many threads may execute service simultaneously. Normally, req and res will actually be HttpServletRequest and HttpServletResponse classes.

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