com.ibm.portal.security
Interface SecurityFilterConfig


public interface SecurityFilterConfig

This interface defines a generic configuration object for the initialization of a security filter. It provides two methods to read initialization parameters that are set for particular filter implementations in the Portal configuration.

Since:
6.1

Method Summary
 java.lang.String getInitParameter(java.lang.String name)
          Returns the value for a particular parameter that is set in the configuration for the corresponding security filter.
 java.util.Iterator getInitParameterNames()
          Returns the names of all parameters that are set in the configuration for the corresponding security filter.
 

Method Detail

getInitParameter

java.lang.String getInitParameter(java.lang.String name)
Returns the value for a particular parameter that is set in the configuration for the corresponding security filter.

Parameters:
name - The name of the parameter.
Returns:
The value that is set for the parameter.

getInitParameterNames

java.util.Iterator getInitParameterNames()
Returns the names of all parameters that are set in the configuration for the corresponding security filter.

Returns:
An iterator object for all parameter names.