Interface: javax.servlet.FilterConfig
- public interface FilterConfig
A filter configuration object used by a servlet container
to pass information to a filter during initialization.
Methods
-
getFilterNametop
public String getFilterName()Returns the filter-name of this filter as defined in the deployment descriptor. -
getInitParametertop
Returns aStringcontaining the value of the named initialization parameter, ornullif the parameter does not exist. -
getInitParameterNamestop
public Enumeration getInitParameterNames()Returns the names of the filter's initialization parameters as anEnumerationofStringobjects, or an emptyEnumerationif the filter has no initialization parameters. -
getServletContexttop
public ServletContext getServletContext()Returns a reference to the javax.servlet.ServletContext in which the caller is executing.
