Repository: camel Updated Branches: refs/heads/master 5ef0e5545 -> 2c7c11af1
CAMEL-10393: fix properties component doc Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2c7c11af Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2c7c11af Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2c7c11af Branch: refs/heads/master Commit: 2c7c11af139dbee9bee6538f0a7c5fa1bdbdec1d Parents: 5ef0e55 Author: lburgazzoli <[email protected]> Authored: Thu Oct 20 01:06:42 2016 +0200 Committer: lburgazzoli <[email protected]> Committed: Thu Oct 20 01:06:53 2016 +0200 ---------------------------------------------------------------------- camel-core/src/main/docs/properties-component.adoc | 2 +- .../org/apache/camel/component/properties/PropertiesComponent.java | 2 +- .../properties/springboot/PropertiesComponentConfiguration.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2c7c11af/camel-core/src/main/docs/properties-component.adoc ---------------------------------------------------------------------- diff --git a/camel-core/src/main/docs/properties-component.adoc b/camel-core/src/main/docs/properties-component.adoc index 14291ca..b68d26d 100644 --- a/camel-core/src/main/docs/properties-component.adoc +++ b/camel-core/src/main/docs/properties-component.adoc @@ -37,7 +37,7 @@ The Properties component supports 16 options which are listed below. | propertyPrefix | String | Optional prefix prepended to property names before resolution. | propertySuffix | String | Optional suffix appended to property names before resolution. | fallbackToUnaugmentedProperty | boolean | If true first attempt resolution of property name augmented with propertyPrefix and propertySuffix before falling back the plain property name specified. If false only the augmented property name is searched. -| defaultFallbackEnabled | boolean | If true the component does not attempt to find a default for the key by looking after the colon separator. +| defaultFallbackEnabled | boolean | If false the component does not attempt to find a default for the key by looking after the colon separator. | ignoreMissingLocation | boolean | Whether to silently ignore if a location cannot be located such as a properties file not found. | prefixToken | String | Sets the value of the prefix token used to identify properties to replace. Setting a value of null restores the default token (link link DEFAULT_PREFIX_TOKEN). | suffixToken | String | Sets the value of the suffix token used to identify properties to replace. Setting a value of null restores the default token (link link DEFAULT_SUFFIX_TOKEN). http://git-wip-us.apache.org/repos/asf/camel/blob/2c7c11af/camel-core/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java b/camel-core/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java index 8cd5ba9..82020f6 100644 --- a/camel-core/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java +++ b/camel-core/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java @@ -349,7 +349,7 @@ public class PropertiesComponent extends UriEndpointComponent { } /** - * If true, the component does not attempt to find a default for the key by looking after the colon separator. + * If false, the component does not attempt to find a default for the key by looking after the colon separator. */ public void setDefaultFallbackEnabled(boolean defaultFallbackEnabled) { this.defaultFallbackEnabled = defaultFallbackEnabled; http://git-wip-us.apache.org/repos/asf/camel/blob/2c7c11af/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java ---------------------------------------------------------------------- diff --git a/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java b/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java index cba77d5..9a360bc 100644 --- a/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java +++ b/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java @@ -79,7 +79,7 @@ public class PropertiesComponentConfiguration { */ private Boolean fallbackToUnaugmentedProperty; /** - * If true the component does not attempt to find a default for the key by + * If false the component does not attempt to find a default for the key by * looking after the colon separator. */ private Boolean defaultFallbackEnabled;
