IBM WebSphere Application ServerTM
Release 7

com.ibm.websphere.servlet.filter
Interface IFilterConfig

All Superinterfaces:
javax.servlet.FilterConfig

public interface IFilterConfig
extends javax.servlet.FilterConfig

A representation of the configuration for a filter


Field Summary
static int FILTER_ERROR
           
static int FILTER_FORWARD
           
static int FILTER_INCLUDE
           
static int FILTER_REQUEST
           
 
Method Summary
 void addInitParameter(java.lang.String name, java.lang.String value)
          Add an init parmameter
 void setDescription(java.lang.String description)
          Set the discription for this config
 void setDispatchMode(int[] dispatchMode)
          Set the dispatch types this filter should run for
 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)
          Set the filter class name
 void setName(java.lang.String name)
          Set the name of this filter
 
Methods inherited from interface javax.servlet.FilterConfig
getFilterName, getInitParameter, getInitParameterNames, getServletContext
 

Field Detail

FILTER_REQUEST

static final int FILTER_REQUEST
See Also:
Constant Field Values

FILTER_FORWARD

static final int FILTER_FORWARD
See Also:
Constant Field Values

FILTER_INCLUDE

static final int FILTER_INCLUDE
See Also:
Constant Field Values

FILTER_ERROR

static final int FILTER_ERROR
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)
Set the dispatch types this filter should run for

Parameters:
dispatchType -

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 -

setFilterClassName

void setFilterClassName(java.lang.String className)
Set the filter class name

Parameters:
className -

setName

void setName(java.lang.String name)
Set the name of this filter

Parameters:
name -

IBM WebSphere Application ServerTM
Release 7