Configuration for a filter. The container will fill the
FilterConfig with the init parameters before passing it to
the filter.
Filter configuration in the web.xml looks like:
<filter filter-name='myservlet'
filter-class='test.MyServlet'>
<init-param param1='value1'/>
<init-param param2='value2'/>
</filter>
since: Servlet 2.3 |