com.caucho.server.webapp
Class DispatchFilterChain
java.lang.Object
com.caucho.server.webapp.DispatchFilterChain
- All Implemented Interfaces:
- FilterChain
public class DispatchFilterChain
- extends java.lang.Object
- implements FilterChain
Represents the next filter in a filter chain. The final filter will
be the servlet itself.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
DispatchFilterChain
public DispatchFilterChain(FilterChain next,
WebApp webApp)
- Creates a new FilterChainFilter.
- Parameters:
next
- the next filterChainwebApp
- the webApp
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 requestresponse
- the servlet response
- Throws:
ServletException
java.io.IOException
- Since:
- Servlet 2.3
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object