org.apache.camel.core.xml.util.jsse
Class FilterParametersDefinition
java.lang.Object
org.apache.camel.core.xml.util.jsse.FilterParametersDefinition
public class FilterParametersDefinition
- extends java.lang.Object
Represents a set of regular expression based filter patterns for
including and excluding content of some type.
|
Field Summary |
protected java.util.List<java.lang.String> |
exclude
|
protected java.util.List<java.lang.String> |
include
|
|
Method Summary |
java.util.List<java.lang.String> |
getExclude()
Returns a live copy of the list of patterns to exclude. |
java.util.List<java.lang.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 |
include
protected java.util.List<java.lang.String> include
exclude
protected java.util.List<java.lang.String> exclude
FilterParametersDefinition
public FilterParametersDefinition()
getInclude
public java.util.List<java.lang.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 java.util.List<java.lang.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