com.ibm.wps.pe.pc.legacy.cmpf
Interface PortletFilterConfig


Deprecated. since 6.0. Support of the IBM portlet API may be removed in a future release of WebSphere Portal. Use of the Java Portlet API (javax.portlet) is recommended instead.

public interface PortletFilterConfig

Filter configuration passed by the portlet container during filter initialization.

Since:
5.0
See Also:
PortletFilter

Method Summary
 java.lang.String getFilterName()
          Deprecated. Returns the filter name of this filter
 java.lang.String getInitParameter(java.lang.String name)
          Deprecated. Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.
 java.util.Enumeration getInitParameterNames()
          Deprecated. Returns the names of the portlet's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the portlet has no initialization parameters.
 javax.servlet.ServletContext getPortalContext()
          Deprecated. Returns a reference to the portal's ServletContext in which the caller is executing.
 

Method Detail

getFilterName

java.lang.String getFilterName()
Deprecated. 
Returns the filter name of this filter

Returns:
the filter name

getPortalContext

javax.servlet.ServletContext getPortalContext()
Deprecated. 
Returns a reference to the portal's ServletContext in which the caller is executing.

Returns:
a ServletContext object, used by the caller to interact with its portal
See Also:
ServletContext

getInitParameter

java.lang.String getInitParameter(java.lang.String name)
Deprecated. 
Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist.

Parameters:
name - a String specifying the name of the initialization parameter
Returns:
a String containing the value of the initialization parameter

getInitParameterNames

java.util.Enumeration getInitParameterNames()
Deprecated. 
Returns the names of the portlet's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the portlet has no initialization parameters.

Returns:
an Enumeration of String objects containing the names of the portlet's initialization parameters