com.caucho.jsf.dev
Class JsfDeveloperAidServlet
java.lang.Object
javax.servlet.GenericServlet
com.caucho.jsf.dev.JsfDeveloperAidServlet
- All Implemented Interfaces:
- java.io.Serializable, Servlet, ServletConfig
public class JsfDeveloperAidServlet
- extends GenericServlet
- See Also:
- Serialized Form
| 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 |
JsfDeveloperAidServlet
public JsfDeveloperAidServlet()
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 HttpServletRequestres - 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)