javax.servlet
Interface FilterChain


public interface 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.
 

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