You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/10/22 11:41:49 UTC

[camel] branch master updated: Regen for commit 607e844d1c0b2bdbc5f984c897f6906537227c34 (#4489)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 754c0a3  Regen for commit 607e844d1c0b2bdbc5f984c897f6906537227c34 (#4489)
754c0a3 is described below

commit 754c0a3af555b79cfc9536a0b6a6af42debf4096
Author: github-actions[bot] <41...@users.noreply.github.com>
AuthorDate: Thu Oct 22 13:41:35 2020 +0200

    Regen for commit 607e844d1c0b2bdbc5f984c897f6906537227c34 (#4489)
    
    Signed-off-by: GitHub <no...@github.com>
    
    Co-authored-by: davsclaus <da...@users.noreply.github.com>
---
 .../org/apache/camel/catalog/docs/toD-eip.adoc     | 32 ++--------------------
 1 file changed, 3 insertions(+), 29 deletions(-)

diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/toD-eip.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/toD-eip.adoc
index 6979ed9..54997f8 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/toD-eip.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/toD-eip.adoc
@@ -1,7 +1,7 @@
 [[toD-eip]]
 = To D EIP
 :docTitle: To D
-:description: Sends the message to a dynamic endpoint You can specify multiple languages in the uri separated by the plus sign, such as mock:language:xpath:/order/uri where mock: would be a prefix to a xpath expression. For more dynamic behavior use Recipient List or Dynamic Router EIP instead.
+:description: Sends the message to a single dynamic endpoint. For more dynamic behavior use Recipient List or Dynamic Router EIP instead.
 :since: 
 :supportLevel: Stable
 
@@ -72,7 +72,7 @@ In the example above we compute an endpoint that has prefix "mock:" and
 then the header foo is appended. So for example if the header foo has
 value order, then the endpoint is computed as "mock:order".
 
-You can also use other languages than xref:components:languages:simple-language.adoc[Simple] such
+You can also use another language than xref:components:languages:simple-language.adoc[Simple] such
 as xref:components:languages:xpath-language.adoc[XPath] - this requires to prefix with language: as
 shown below (simple language is the default language). If you do not
 specify language: then the endpoint is a component name. And in some
@@ -95,32 +95,6 @@ from("direct:start")
   .toD("language:xpath:/order/@uri");
 ----
 
-You can also concat multiple xref:components::language-component.adoc[Language](s) together
-using the plus sign `+` such as shown below:
-
-[source,xml]
-----
-<route>
-  <from uri="direct:start"/>
-  <toD uri="jms:${header.base}+language:xpath:/order/@id"/>
-</route>
-----
-
-In the example above the uri is a combination
-of xref:components:languages:simple-language.adoc[Simple] language and xref:components:languages:simple-language.adoc[XPath] where
-the first part is simple (simple is default language). And then the plus
-sign separate to another language, where we specify the language name
-followed by a colon
-
-[source,java]
-----
-from("direct:start")
-  .toD("jms:${header.base}+language:xpath:/order/@id");
-----
-
-You can concat as many languages as you want, just separate them with
-the plus sign
-
 == Avoid creating endless dynamic endpoints which takes up resources
 
 When using dynamic computed endpoints with `toD` then you may compute a lot of dynamic endpoints,
@@ -167,7 +141,7 @@ as documented next.
 == Using optimised components
 
 But a better solution would be if the HTTP component could be optimised to handle the variations of dynamic computed endpoint uris.
-This is with the following components, which have been optimised for `toD`:
+This is with among the following components, which have been optimised for `toD`:
 
 - camel-http
 - camel-jetty