com.caucho.server.http
Class FilterChainFilter

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

public class FilterChainFilter
extends java.lang.Object
implements FilterChain

Represents the next filter in a filter chain. The final filter will be the servlet itself.

Since:
Servlet 2.3

Method Summary
 void doFilter(ServletRequest request, ServletResponse response)
          Invokes the next filter in the chain or 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 next filter in the chain or the final servlet at the end of the chain.
Specified by:
doFilter in interface FilterChain
Parameters:
request - the servlet request
response - the servlet response
Since:
Servlet 2.3