You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2017/02/27 23:33:14 UTC

incubator-tamaya-site git commit: TAMAYA-251: Renamed camel package.

Repository: incubator-tamaya-site
Updated Branches:
  refs/heads/master 98574522d -> 69e489603


TAMAYA-251: Renamed camel package.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/commit/69e48960
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/tree/69e48960
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/diff/69e48960

Branch: refs/heads/master
Commit: 69e4896035ef4ba66b1c806268b5592036c1940a
Parents: 9857452
Author: anatole <an...@apache.org>
Authored: Tue Feb 28 00:33:07 2017 +0100
Committer: anatole <an...@apache.org>
Committed: Tue Feb 28 00:33:07 2017 +0100

----------------------------------------------------------------------
 content/documentation/extensions/mod_camel.adoc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/blob/69e48960/content/documentation/extensions/mod_camel.adoc
----------------------------------------------------------------------
diff --git a/content/documentation/extensions/mod_camel.adoc b/content/documentation/extensions/mod_camel.adoc
index 18a937a..a30f851 100644
--- a/content/documentation/extensions/mod_camel.adoc
+++ b/content/documentation/extensions/mod_camel.adoc
@@ -13,7 +13,7 @@ Tamaya _Camel_ is an extension module. Refer to the link:../extensions.html[exte
 
 === What functionality this module provides ?
 
-The Tamaya _Camel_ integration module provides different artifacts which allows integration of Apachae Tamaya
+The Tamaya _Camel_ module provides different artifacts which allows integration of Apachae Tamaya
 configuration with Apache Camel.
 
 
@@ -38,13 +38,13 @@ To benefit from configuration builder support you only must add the correspondin
 
 === The Functionality Provided
 
-Camel integration comes basically with three artifacts:
+Tamaya Camel comes basically with three artifacts:
 
 * A Camel +ResolverFunction+ implementation adding explicit property resolution
-  (+org.apache.tamaya.integration.camel.TamayaPropertyResolver+).
+  (+org.apache.tamaya.camel.TamayaPropertyResolver+).
 * A Camel +PropertiesComponent+ implementation, which allows implicitly preconfigures the resolvers from above and
   additionally allows using Tamaya configuration as Camel _overrides_
-  (+org.apache.tamaya.integration.camel.TamayaPropertiesComponent+).
+  (+org.apache.tamaya.camel.TamayaPropertiesComponent+).
 
 
 === Configuring using Camel Java DSL
@@ -53,7 +53,7 @@ Camel integration using Java DSL is basically simple:
 
 [source, java]
 -----------------------------------------------
-import org.apache.tamaya.integration.camel.TamayaPropertiesComponent;
+import org.apache.tamaya.camel.TamayaPropertiesComponent;
 
 camelContext.addComponent("properties", new TamayaPropertiesComponent());
 -----------------------------------------------
@@ -124,7 +124,7 @@ again use Tamaya as the main configuration solutions only using Camel's default
         </route>
     </routeContext>
 
-    <bean id="properties" class="org.apache.tamaya.integration.camel.TamayaPropertiesComponent">
+    <bean id="properties" class="org.apache.tamaya.camel.TamayaPropertiesComponent">
         <property name="tamayaOverrides" value="true"/>
     </bean>