DOC

com.mattunderscore : filter-utils

Maven & Gradle

Jul 26, 2014
2 usages

Filter Utilities · Provides basic support of servlet filter. Boilerplate code etc. It provides a boilerplate implementation of the Filter interface. The GenericFilter provides a getter and setter for the FilterConfig object and ensures that this is set when init is called. The init method also calls the configureFilter method after the FilterConfig object is set and can be used by subclasses to process the filter config during initiation. It also provides an empty implementation of the destory method. The only method that requires implementation is the doFilter method. The GenericHTTPFilter extends the GenericFilter class, it provides a doFilter method that attempts to cast the ServletRequest and ServletResponse objects to HttpServletRequest and HttpServletResponse objects. If these objects can be cast successfuly then it calls the doHTTPFilter method and passes the cast objects references. If the objects cannot be cast a ServletException is thrown. The doHTTPFilter method is abstract and must be implemented by subclasses.

Table Of Contents

Latest Version

Download com.mattunderscore : filter-utils Javadoc & API Documentation - Latest Versions:

All Versions

Download com.mattunderscore : filter-utils Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
0.2.x
0.1.x

How to open Javadoc JAR file in web browser

  1. Rename the file filter-utils-0.2.8-javadoc.jar to filter-utils-0.2.8-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder filter-utils-0.2.8-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "filter-utils-0.2.8-sources.jar" -d "filter-utils-0.2.8-javadoc" -subpackages