org.apache.camel.core.xml.util.jsse
Class FilterParametersDefinition

java.lang.Object
  extended by org.apache.camel.core.xml.util.jsse.FilterParametersDefinition

public class FilterParametersDefinition
extends Object

Represents a set of regular expression based filter patterns for including and excluding content of some type.


Field Summary
protected  List<String> exclude
           
protected  List<String> include
           
 
Constructor Summary
FilterParametersDefinition()
           
 
Method Summary
 List<String> getExclude()
          Returns a live copy of the list of patterns to exclude.
 List<String> getInclude()
          Returns a live copy of the list of patterns to include.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

include

protected List<String> include

exclude

protected List<String> exclude
Constructor Detail

FilterParametersDefinition

public FilterParametersDefinition()
Method Detail

getInclude

public List<String> getInclude()
Returns a live copy of the list of patterns to include. The list of excludes takes precedence over the include patterns.

Returns:
the list of patterns to include

getExclude

public List<String> getExclude()
Returns a live copy of the list of patterns to exclude. This list takes precedence over the include patterns.

Returns:
the list of patterns to exclude


Apache CAMEL