Download filter-utils-0.1.0.jar file - Jar f

Jar examples for f:filter-utils

Description

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.

You can download jar file filter-utils 0.1.0 in this page.

License

New BSD License

Build File

You can use the following script to add filter-utils-0.1.0.jar to your project.

<dependency>
   <groupId>com.mattunderscore</groupId>
   <artifactId>filter-utils</artifactId>
   <version>0.1.0</version>
</dependency>
compile group: 'com.mattunderscore', name: 'filter-utils', version: '0.1.0'
libraryDependencies += "com.mattunderscore" % "filter-utils" % "0.1.0"
<dependency org="com.mattunderscore" name="filter-utils" rev="0.1.0"/>
@Grapes(@Grab(group='com.mattunderscore', module='filter-utils', version='0.1.0'))
'com.mattunderscore:filter-utils:jar:0.1.0'

Download

Click the following link to download the jar file.

filter-utils-0.1.0-javadoc.jar
filter-utils-0.1.0-sources.jar
filter-utils-0.1.0.jar
filter-utils-0.1.0.pom



Related Tutorials