Save This Page
Home » juddi-tomcat-3.0.1 » filters » [javadoc | source]
filters
public final class: ExampleFilter [javadoc | source]
java.lang.Object
   filters.ExampleFilter

All Implemented Interfaces:
    Filter

Example filter that can be attached to either an individual servlet or to a URL pattern. This filter performs the following functions:
Method from filters.ExampleFilter Summary:
destroy,   doFilter,   init,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from filters.ExampleFilter Detail:
 public  void destroy() 
    Take this filter out of service.
 public  void doFilter(ServletRequest request,
    ServletResponse response,
    FilterChain chain) throws IOException, ServletException 
    Time the processing that is performed by all subsequent filters in the current filter stack, including the ultimately invoked servlet.
 public  void init(FilterConfig filterConfig) throws ServletException 
    Place this filter into service.
 public String toString() 
    Return a String representation of this object.