Save This Page
Home » glassfish-v2ur2-b04-src » javax » servlet » [javadoc | source]
javax.servlet
public interface: FilterConfig [javadoc | source] A filter configuration object used by a servlet container to pass information to a filter during initialization.
Method from javax.servlet.FilterConfig Summary:
getFilterName,   getInitParameter,   getInitParameterNames,   getServletContext
Method from javax.servlet.FilterConfig Detail:
 public String getFilterName()
    Returns the filter-name of this filter as defined in the deployment descriptor.
 public String getInitParameter(String name)
    Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.
 public Enumeration getInitParameterNames()
    Returns the names of the filter's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the filter has no initialization parameters.
 public ServletContext getServletContext()
    Returns a reference to the ServletContext in which the caller is executing.