| javax.servlet.Filter
Filter | public interface Filter (Code) | | Filters the request or response to a servlet. Filters will
typically call the next filter in the chain, eventually reaching
the servlet at the bottom.
since: Servlet 2.3 |
destroy | public void destroy()(Code) | | Cleanup the filter.
|
doFilter | public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException(Code) | | doFilter performs the actual work of a filter, either modifying
the request or the response. It will typically call the
chain.doFilter() to invoke the next filter in the chain.
Parameters: request - the servlet request Parameters: response - the servlet response Parameters: chain - the next filter in the chain |
|
|