com.caucho.server.http
Class FilterChainServlet

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

public class FilterChainServlet
extends FilterChainBase

Represents the final servlet in a filter chain.

Since:
Servlet 2.3

Field Summary
protected  Servlet 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
 

Field Detail

servlet

protected Servlet servlet
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.
Parameters:
request - the servlet request
response - the servlet response
Since:
Servlet 2.3