Advertisement
techmik

Filter.java

Oct 30th, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package javax.servlet;
  2.  
  3. import java.io.IOException;
  4.  
  5. // Referenced classes of package javax.servlet:
  6. // ServletException, FilterConfig, ServletRequest, ServletResponse,
  7. // FilterChain
  8.  
  9. public interface Filter
  10. {
  11.  
  12. public abstract void init(FilterConfig filterconfig)
  13. throws ServletException;
  14.  
  15. public abstract void doFilter(ServletRequest servletrequest, ServletResponse servletresponse, FilterChain filterchain)
  16. throws IOException, ServletException;
  17.  
  18. public abstract void destroy();
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement