javax.servlet
public interface FilterChain
Since: Servlet 2.3
See Also: Filter
Method Summary | |
---|---|
void | doFilter(ServletRequest request, ServletResponse response)
Causes the next filter in the chain to be invoked, or if the calling filter is the last filter
in the chain, causes the resource at the end of the chain to be invoked.
|
Parameters: request the request to pass along the chain. response the response to pass along the chain.
Since: 2.3