IBM WebSphere Application ServerTM
Release 8

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

A representation of the configuration for a filter


Nested Class Summary
 
Nested classes/interfaces inherited from interface javax.servlet.FilterRegistration
javax.servlet.FilterRegistration.Dynamic
 
Field Summary
static int FILTER_ERROR
          Deprecated.  
static int FILTER_FORWARD
          Deprecated.  
static int FILTER_INCLUDE
          Deprecated.  
static int FILTER_REQUEST
          Deprecated.  
 
Method Summary
 void addInitParameter(java.lang.String name, java.lang.String value)
          Add an init parmameter
 boolean isAsyncSupported()
           
 void setDescription(java.lang.String description)
          Set the discription for this config
 void setDispatchMode(int[] dispatchMode)
          Deprecated. Please use Servlet 3.0 methods for adding filters dynamically.
 void setDisplayName(java.lang.String displayName)
          Set the display name for this config
 void setFilterClassLoader(java.lang.ClassLoader filterClassLoader)
          Set the ClassLoader this Filter should be loaded from.
 void setFilterClassName(java.lang.String className)
           
 void 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:
Constant Field Values

FILTER_FORWARD

static final int FILTER_FORWARD
Deprecated. 
See Also:
Constant Field Values

FILTER_INCLUDE

static final int FILTER_INCLUDE
Deprecated. 
See Also:
Constant Field Values

FILTER_ERROR

static final int FILTER_ERROR
Deprecated. 
See Also:
Constant Field Values
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()

IBM WebSphere Application ServerTM
Release 8