1 17 package javax.servlet; 18 19 import java.io.IOException ; 20 21 43 44 public interface Filter { 45 46 56 public void init(FilterConfig filterConfig) throws ServletException ; 57 58 59 75 public void doFilter ( ServletRequest request, ServletResponse response, FilterChain chain ) throws IOException , ServletException ; 76 77 87 88 public void destroy(); 89 90 91 } 92 93 | Popular Tags |