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
- public interface IFilterConfig
- extends javax.servlet.FilterConfig, javax.servlet.FilterRegistration.Dynamic
Nested Class Summary
Nested classes/interfaces inherited from interface javax.servlet.FilterRegistration |
---|
javax.servlet.FilterRegistration.Dynamic |
Field Summary
Modifier and Type | Field and Description |
---|---|
|
FILTER_ERROR
Deprecated.
|
|
FILTER_FORWARD
Deprecated.
|
|
FILTER_INCLUDE
Deprecated.
|
|
FILTER_REQUEST
Deprecated.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
addInitParameter(java.lang.String name,java.lang.String value)
Add an init parmameter
|
|
isAsyncSupported()
|
|
setDescription(java.lang.String description)
Set the discription for this config
|
|
setDispatchMode(int[] dispatchMode)
Deprecated. Please use Servlet 3.0 methods for adding filters dynamically.
|
|
setDisplayName(java.lang.String displayName)
Set the display name for this config
|
|
setFilterClassLoader(java.lang.ClassLoader filterClassLoader)
Set the ClassLoader this Filter should be loaded from.
|
|
setFilterClassName(java.lang.String className)
|
|
setName(java.lang.String name)
Set the name of this filter
|
Methods inherited from interface javax.servlet.FilterConfig |
---|
getFilterName, getInitParameter, getInitParameterNames, getServletContext |
Methods inherited from interface javax.servlet.FilterRegistration |
---|
addMappingForServletNames, addMappingForUrlPatterns, getServletNameMappings, getUrlPatternMappings |
Methods inherited from interface javax.servlet.Registration.Dynamic |
---|
setAsyncSupported |
Methods inherited from interface javax.servlet.Registration |
---|
getClassName, getInitParameter, getInitParameters, getName, setInitParameter, setInitParameters |
Field Detail
FILTER_REQUEST
- static final int FILTER_REQUEST
Deprecated.
See Also:
FILTER_FORWARD
- static final int FILTER_FORWARD
Deprecated.
See Also:
FILTER_INCLUDE
- static final int FILTER_INCLUDE
Deprecated.
See Also:
FILTER_ERROR
- static final int FILTER_ERROR
Deprecated.
See Also:
Method Detail
setFilterClassLoader
- void setFilterClassLoader(java.lang.ClassLoader filterClassLoader)
Set the ClassLoader this Filter should be loaded from.
Parameters:
filterClassLoader
- addInitParameter
- void addInitParameter(java.lang.String name,
- java.lang.String value)
Add an init parmameter
Parameters:
name
- value
- setDispatchMode
- void 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
- setDisplayName
- void setDisplayName(java.lang.String displayName)
Set the display name for this config
Parameters:
displayName
- setDescription
- void setDescription(java.lang.String description)
Set the discription for this config
Parameters:
description
- setName
- void setName(java.lang.String name)
Set the name of this filter
Parameters:
name
- setFilterClassName
- void setFilterClassName(java.lang.String className)
isAsyncSupported
- boolean isAsyncSupported()