com.caucho.server.http
Class FilterChainSingleThreadServlet

java.lang.Object
  |
  +--com.caucho.server.http.FilterChainBase
        |
        +--com.caucho.server.http.FilterChainServlet
              |
              +--com.caucho.server.http.FilterChainSingleThreadServlet
All Implemented Interfaces:
FilterChain

public class FilterChainSingleThreadServlet
extends FilterChainServlet

Represents the final servlet in a filter chain.

Since:
Servlet 2.3

Fields inherited from class com.caucho.server.http.FilterChainServlet
servlet
 
Method Summary
 void doFilter(ServletRequest request, ServletResponse response)
          Invokes the final servlet at the end of the chain.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

doFilter

public void doFilter(ServletRequest request,
                     ServletResponse response)
              throws ServletException,
                     java.io.IOException
Invokes the final servlet at the end of the chain.
Overrides:
doFilter in class FilterChainServlet
Parameters:
request - the servlet request
response - the servlet response
Since:
Servlet 2.3