This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new dff5030 CAMEL-16861: Cleanup and update EIP docs dff5030 is described below commit dff50305d08136f55516f13a8114c1b37664519f Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Sep 23 19:23:15 2021 +0200 CAMEL-16861: Cleanup and update EIP docs --- .../src/main/docs/modules/eips/pages/kamelet-eip.adoc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/kamelet-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/kamelet-eip.adoc index 1355e9e..f3ef4bb 100644 --- a/core/camel-core-engine/src/main/docs/modules/eips/pages/kamelet-eip.adoc +++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/kamelet-eip.adoc @@ -8,7 +8,7 @@ Kamelets (Kamel route snippets) allow users to connect to external systems via a simplified interface, hiding all the low level details about how those connections are implemented. -The Kamelet EIP allows to call Kamelets (route templates). +The Kamelet EIP allows calling Kamelets (i.e. xref:latest@manual:ROOT:route-template.adoc[Route Template]). When calling a Kamelet you may just refer to the name (template id) of the Kamelet in the EIP as shown below: == Options @@ -38,8 +38,8 @@ And in XML Camel will then, when starting: -* lookup the route template with the given id (i.e. foo) from the Camel context -* create a new route based on the route template +* Lookup the xref:latest@manual:ROOT:route-template.adoc[Route Template] with the given id (in the example above its foo) from the `CamelContext` +* Create a new route based on the xref:latest@manual:ROOT:route-template.adoc[Route Template] == Dependency @@ -54,3 +54,7 @@ The implementation of the Kamelet EIP is located in the `camel-kamelet` JAR, so <version>x.y.z</version> </dependency> ---- + +== See Also + +See the example https://github.com/apache/camel-examples/tree/master/examples/kamelet[camel-example-kamelet].