com.ibm.wsspi.webcontainer.filter
Interface IFilterConfig
All Superinterfaces:
- public interface IFilterConfig
- extends IFilterConfig
Field Summary
Fields inherited from interface com.ibm.websphere.servlet.filter.IFilterConfig |
---|
FILTER_ERROR, FILTER_FORWARD, FILTER_INCLUDE, FILTER_REQUEST |
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getDispatchType()
Get the dispatch type
|
|
getFilter()
|
|
getFilterClass()
|
|
getFilterClassLoader()
Get the classloader where this Filter should be loaded from.
|
|
getFilterClassName()
Get the filter class name
|
|
isInternal()
Checks if resource should be considered internal.
|
|
setFilter(Filter filter)
|
|
setFilterClass(java.lang.Class<? extends Filter> filterClass)
|
|
setFilterClassName(java.lang.String className)
|
|
setInternal(boolean isInternal)
Set whether resource should be considered internal.
|
|
setIServletContext(IServletContext servletContext)
Set the ServletContext this Filter should be associated with.
|
|
setLargeIcon(java.lang.String largeIcon)
Set the large icon
|
|
setSmallIcon(java.lang.String smallIcon)
Set the small icon
|
Methods inherited from interface com.ibm.websphere.servlet.filter.IFilterConfig |
---|
addInitParameter, isAsyncSupported, setDescription, setDispatchMode, setDisplayName, setFilterClassLoader, setName |
Method Detail
setLargeIcon
- void setLargeIcon(java.lang.String largeIcon)
Set the large icon
Parameters:
largeIcon
- setSmallIcon
- void setSmallIcon(java.lang.String smallIcon)
Set the small icon
Parameters:
smallIcon
- getDispatchType
- DispatcherType[] getDispatchType( )
Get the dispatch type
Returns:
getFilterClassLoader
- java.lang.ClassLoader getFilterClassLoader( )
Get the classloader where this Filter should be loaded from.
Default is WebApp's classloader.
Returns:
getFilterClassName
- java.lang.String getFilterClassName( )
Get the filter class name
Returns:
setIServletContext
- void setIServletContext(IServletContext servletContext)
Set the ServletContext this Filter should be associated with.
setInternal
- void setInternal(boolean isInternal)
Set whether resource should be considered internal.
* @return
isInternal
- boolean isInternal()
Checks if resource should be considered internal.
Returns:
setFilter
- void setFilter(Filter filter)
setFilterClass
- void setFilterClass(java.lang.Class<? extends Filter> filterClass)
getFilter
- Filter getFilter()
getFilterClass
- java.lang.Class<? extends Filter> getFilterClass( )
setFilterClassName
- void setFilterClassName(java.lang.String className)
Specified by:
setFilterClassName
in interface IFilterConfig