Polished
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/86fc16b9 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/86fc16b9 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/86fc16b9 Branch: refs/heads/master Commit: 86fc16b9904227a0cdc56551e7ac9185e548ba68 Parents: cc7909c Author: Claus Ibsen <davscl...@apache.org> Authored: Mon Aug 10 09:40:48 2015 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Mon Aug 10 09:41:19 2015 +0200 ---------------------------------------------------------------------- .../org/apache/camel/component/file/GenericFileEndpoint.java | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/86fc16b9/camel-core/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java b/camel-core/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java index 57cce2c..18919ac 100644 --- a/camel-core/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java +++ b/camel-core/src/main/java/org/apache/camel/component/file/GenericFileEndpoint.java @@ -417,6 +417,10 @@ public abstract class GenericFileEndpoint<T> extends ScheduledPollEndpoint imple /** * Is used to include files, if filename matches the regex pattern. + * <p/> + * Notice if you use symbols such as plus sign and others you would need to configure + * this using the RAW() syntax if configuring this as an endpoint uri. + * See more details at <a href="http://camel.apache.org/how-do-i-configure-endpoints.html">configuring endpoint uris</a> */ public void setInclude(String include) { this.include = include; @@ -428,6 +432,10 @@ public abstract class GenericFileEndpoint<T> extends ScheduledPollEndpoint imple /** * Is used to exclude files, if filename matches the regex pattern. + * <p/> + * Notice if you use symbols such as plus sign and others you would need to configure + * this using the RAW() syntax if configuring this as an endpoint uri. + * See more details at <a href="http://camel.apache.org/how-do-i-configure-endpoints.html">configuring endpoint uris</a> */ public void setExclude(String exclude) { this.exclude = exclude;