com.ibm.portal.outbound.config
Interface CustomFilterItem


public interface CustomFilterItem

An entry in the custom filter chain. Custom filters are owned by a policy rule. It holds a class name of a custom policy filter, which are loaded and executed sequentially, if an outbound HTTP connection is opened that applies to the policy rule which owns the filter chain. Custom filters refer to a class name of a custom filter. This filter should implement the interface com.ibm.mashups.proxy.ext.OutboundServiceFilterFactory, although no validation is made by this model SPI.

Since:
8.5.0
See Also:
OutboundConnectionModel, PolicyRule

Method Summary
 java.lang.String getClassName()
          Return the class name of the custom filter.
 java.util.Map<java.lang.String,java.lang.String> getMetaData()
          Return the object meta data
 

Method Detail

getClassName

java.lang.String getClassName()
Return the class name of the custom filter. Note that the model SPI does not validate if this filter exists and can be loaded.

Returns:
String the class name of the custom filter.

getMetaData

java.util.Map<java.lang.String,java.lang.String> getMetaData()
Return the object meta data

Returns:
the meta data that are associated for this model.