Filter
Last updated
Last updated
package javax.servlet;
public interface Filter {
public void init(FilterConfig filterConfig) throws ServletException;
public void doFilter ( ServletRequest request,
ServletResponse response,
FilterChain chain ) throws IOException, ServletException;
public void destroy();
}