com.caucho.server.http
Class FilterChainPage

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

public class FilterChainPage
extends FilterChainBase

Represents the final servlet in a filter chain.

Since:
Servlet 2.3

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