java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.apache.tester.FilterRequest01
- All Implemented Interfaces:
- java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig
- public class FilterRequest01
- extends javax.servlet.http.HttpServlet
Positive test for being able to filter input. The input will be echoed
back in the response, after having been converted to upper case by the
associated filter. Use request parameter type to determine
whether to call getReader() ("reader") or getInputStream() ("stream").
- Version:
- $Revision: 302726 $ $Date: 2004-02-27 09:59:07 -0500 (Fri, 27 Feb 2004) $
| Fields inherited from class javax.servlet.http.HttpServlet |
|
| Methods inherited from class javax.servlet.GenericServlet |
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FilterRequest01
public FilterRequest01()
service
public void service(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.io.IOException,
javax.servlet.ServletException
- Description copied from class:
javax.servlet.http.HttpServlet
- Receives standard HTTP requests from the public
service method and dispatches
them to the doXXX methods defined in
this class. This method is an HTTP-specific version of the
Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)>Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) 55 method. There's no
need to override this method.