com.caucho.jsf.dev
Class JsfDeveloperAidServlet

java.lang.Object
  extended by javax.servlet.GenericServlet
      extended by com.caucho.jsf.dev.JsfDeveloperAidServlet
All Implemented Interfaces:
java.io.Serializable, Servlet, ServletConfig

public class JsfDeveloperAidServlet
extends GenericServlet

See Also:
Serialized Form

Constructor Summary
JsfDeveloperAidServlet()
           
 
Method Summary
 void doPost(HttpServletRequest request, HttpServletResponse response)
           
 boolean find(byte[] data, com.caucho.jsf.dev.JsfDeveloperAidServlet.Scan scan, int limit)
           
 void init(ServletConfig config)
          Initialize the servlet.
 void printEscaped(java.io.PrintWriter out, java.lang.String value)
           
 void service(ServletRequest req, ServletResponse res)
          Service a request.
 
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

JsfDeveloperAidServlet

public JsfDeveloperAidServlet()
Method Detail

init

public void init(ServletConfig config)
          throws ServletException
Description copied from class: GenericServlet
Initialize the servlet. Most servlets should override the zero parameter init() instead.

Specified by:
init in interface Servlet
Overrides:
init in class GenericServlet
Parameters:
config - the servlet's configuration
Throws:
ServletException

doPost

public void doPost(HttpServletRequest request,
                   HttpServletResponse response)
            throws java.io.IOException,
                   ServletException
Throws:
java.io.IOException
ServletException

find

public boolean find(byte[] data,
                    com.caucho.jsf.dev.JsfDeveloperAidServlet.Scan scan,
                    int limit)

service

public void service(ServletRequest req,
                    ServletResponse res)
             throws java.io.IOException,
                    ServletException
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:
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

printEscaped

public void printEscaped(java.io.PrintWriter out,
                         java.lang.String value)