com.ibm.wsspi.webcontainer.filter

Interface IFilterConfig

All Superinterfaces:
IFilterConfig

  1. public interface IFilterConfig
  2. extends IFilterConfig
A representation of the configuration for a filter

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
  1. DispatcherType[]
getDispatchType()
Get the dispatch type
  1. Filter
getFilter()
  1. java.lang.Class<? extends Filter>
getFilterClass()
  1. java.lang.ClassLoader
getFilterClassLoader()
Get the classloader where this Filter should be loaded from.
  1. java.lang.String
getFilterClassName()
Get the filter class name
  1. boolean
isInternal()
Checks if resource should be considered internal.
  1. void
setFilter(Filter filter)
  1. void
setFilterClass(java.lang.Class<? extends Filter> filterClass)
  1. void
setFilterClassName(java.lang.String className)
  1. void
setInternal(boolean isInternal)
Set whether resource should be considered internal.
  1. void
setIServletContext(IServletContext servletContext)
Set the ServletContext this Filter should be associated with.
  1. void
setLargeIcon(java.lang.String largeIcon)
Set the large icon
  1. void
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

  1. void setLargeIcon(java.lang.String largeIcon)
Set the large icon
Parameters:
largeIcon -

setSmallIcon

  1. void setSmallIcon(java.lang.String smallIcon)
Set the small icon
Parameters:
smallIcon -

getDispatchType

  1. DispatcherType[] getDispatchType( )
Get the dispatch type
Returns:

getFilterClassLoader

  1. java.lang.ClassLoader getFilterClassLoader( )
Get the classloader where this Filter should be loaded from. Default is WebApp's classloader.
Returns:

getFilterClassName

  1. java.lang.String getFilterClassName( )
Get the filter class name
Returns:

setIServletContext

  1. void setIServletContext(IServletContext servletContext)
Set the ServletContext this Filter should be associated with.

setInternal

  1. void setInternal(boolean isInternal)
Set whether resource should be considered internal. * @return

isInternal

  1. boolean isInternal()
Checks if resource should be considered internal.
Returns:

setFilter

  1. void setFilter(Filter filter)

setFilterClass

  1. void setFilterClass(java.lang.Class<? extends Filter> filterClass)

getFilter

  1. Filter getFilter()

getFilterClass

  1. java.lang.Class<? extends Filter> getFilterClass( )

setFilterClassName

  1. void setFilterClassName(java.lang.String className)
Specified by: