org.apache.catalina.core
public final class ApplicationFilterConfig extends Object implements FilterConfig, Serializable
javax.servlet.FilterConfig useful in
managing the filter instances instantiated when a web application
is first started.
Version: $Revision: 812133 $ $Date: 2009-09-07 15:37:06 +0200 (Mon, 07 Sep 2009) $
| Field Summary | |
|---|---|
| protected static Properties | restrictedFilters
Restricted filters (which can only be loaded by a privileged webapp). |
| protected static StringManager | sm |
| Method Summary | |
|---|---|
| String | getFilterClass()
Return the class of the filter we are configuring. |
| Map<String,String> | getFilterInitParameterMap() |
| String | getFilterName()
Return the name of the filter we are configuring. |
| String | getInitParameter(String name)
Return a String containing the value of the named
initialization parameter, or null if the parameter
does not exist.
|
| Enumeration | getInitParameterNames()
Return an Enumeration of the names of the initialization
parameters for this Filter. |
| ServletContext | getServletContext()
Return the ServletContext of our associated web application. |
| protected boolean | isFilterAllowed(Class filterClass)
Return true if loading this filter is allowed. |
| String | toString()
Return a String representation of this object. |
String containing the value of the named
initialization parameter, or null if the parameter
does not exist.
Parameters: name Name of the requested initialization parameter
Enumeration of the names of the initialization
parameters for this Filter.true if loading this filter is allowed.