Package com.ibm.websphere.servlet.filter
Interface IFilterConfig
- 
- All Superinterfaces:
- javax.servlet.FilterConfig,- javax.servlet.FilterRegistration,- javax.servlet.FilterRegistration.Dynamic,- javax.servlet.Registration,- javax.servlet.Registration.Dynamic
 - All Known Subinterfaces:
- IFilterConfig
 
 public interface IFilterConfig extends javax.servlet.FilterConfig, javax.servlet.FilterRegistration.DynamicA representation of the configuration for a filter
- 
- 
Field SummaryFields Modifier and Type Field Description static intFILTER_ERRORDeprecated.static intFILTER_FORWARDDeprecated.static intFILTER_INCLUDEDeprecated.static intFILTER_REQUESTDeprecated.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddInitParameter(java.lang.String name, java.lang.String value)Add an init parmameterbooleanisAsyncSupported()voidsetDescription(java.lang.String description)Set the discription for this configvoidsetDispatchMode(int[] dispatchMode)Deprecated.Please use Servlet 3.0 methods for adding filters dynamically.voidsetDisplayName(java.lang.String displayName)Set the display name for this configvoidsetFilterClassLoader(java.lang.ClassLoader filterClassLoader)Set the ClassLoader this Filter should be loaded from.voidsetFilterClassName(java.lang.String className)voidsetName(java.lang.String name)Set the name of this filter- 
Methods inherited from interface javax.servlet.FilterConfiggetFilterName, getInitParameter, getInitParameterNames, getServletContext
 - 
Methods inherited from interface javax.servlet.FilterRegistrationaddMappingForServletNames, addMappingForUrlPatterns, getServletNameMappings, getUrlPatternMappings
 
- 
 
- 
- 
- 
Field Detail- 
FILTER_REQUESTstatic final int FILTER_REQUEST Deprecated.- See Also:
- Constant Field Values
 
 - 
FILTER_FORWARDstatic final int FILTER_FORWARD Deprecated.- See Also:
- Constant Field Values
 
 - 
FILTER_INCLUDEstatic final int FILTER_INCLUDE Deprecated.- See Also:
- Constant Field Values
 
 - 
FILTER_ERRORstatic final int FILTER_ERROR Deprecated.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
setFilterClassLoadervoid setFilterClassLoader(java.lang.ClassLoader filterClassLoader) Set the ClassLoader this Filter should be loaded from.- Parameters:
- filterClassLoader-
 
 - 
addInitParametervoid addInitParameter(java.lang.String name, java.lang.String value)Add an init parmameter- Parameters:
- name-
- value-
 
 - 
setDispatchModevoid setDispatchMode(int[] dispatchMode) Deprecated.Please use Servlet 3.0 methods for adding filters dynamically.Set the dispatch mode this filter should run for- Parameters:
- dispatchMode-
 
 - 
setDisplayNamevoid setDisplayName(java.lang.String displayName) Set the display name for this config- Parameters:
- displayName-
 
 - 
setDescriptionvoid setDescription(java.lang.String description) Set the discription for this config- Parameters:
- description-
 
 - 
setNamevoid setName(java.lang.String name) Set the name of this filter- Parameters:
- name-
 
 - 
setFilterClassNamevoid setFilterClassName(java.lang.String className) 
 - 
isAsyncSupportedboolean isAsyncSupported() 
 
- 
 
-