You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/05/16 10:05:46 UTC

[camel] branch master updated (fd7d81f -> da994fc)

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

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


    from fd7d81f  Upgrade Univocity Parsers to version 2.8.2
     new db9d605  Camel-CDI: Polished docs a bit
     new bd8b4c2  Camel-Jsonpath: Polished docs
     new da994fc  Camel-Test-spring: Polished docs

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 components/camel-cdi/src/main/docs/cdi.adoc                    | 8 ++++----
 components/camel-jsonpath/src/main/docs/jsonpath-language.adoc | 2 +-
 components/camel-test-spring/src/main/docs/test-spring.adoc    | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)


[camel] 01/03: Camel-CDI: Polished docs a bit

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit db9d60552feb3b679a99d60162afa0f42eb62bb8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 16 12:04:02 2019 +0200

    Camel-CDI: Polished docs a bit
---
 components/camel-cdi/src/main/docs/cdi.adoc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/camel-cdi/src/main/docs/cdi.adoc b/components/camel-cdi/src/main/docs/cdi.adoc
index 21771b2..9b5bfbc 100644
--- a/components/camel-cdi/src/main/docs/cdi.adoc
+++ b/components/camel-cdi/src/main/docs/cdi.adoc
@@ -417,11 +417,11 @@ See configuration properties for more details.
 |Producer template injection (default Camel context) a|
 [source,java]
 ----
-@Produce(uri = "mock:outbound")
+@Produce("mock:outbound")
 ProducerTemplate producer;
 
 // or using fluent template
-@Produce(uri = "mock:outbound")
+@Produce("mock:outbound")
 FluentProducerTemplate producer;
 ----
 
@@ -433,7 +433,7 @@ FluentProducerTemplate producer;
 ProducerTemplate producer;
 
 // or using fluent template
-@Produce(uri = "direct:outbound")
+@Produce("direct:outbound")
 FluentProducerTemplate producer;
 ----
 
@@ -501,7 +501,7 @@ MyBean bean;
 |POJO consuming a|
 [source,java]
 ----
-@Consume(uri = "seda:inbound")
+@Consume("seda:inbound")
 void consume(@Body String body) {
     //...
 }


[camel] 03/03: Camel-Test-spring: Polished docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit da994fcbc8b9d8db3c3ed4f37250b56475b7c424
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 16 12:05:24 2019 +0200

    Camel-Test-spring: Polished docs
---
 components/camel-test-spring/src/main/docs/test-spring.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-test-spring/src/main/docs/test-spring.adoc b/components/camel-test-spring/src/main/docs/test-spring.adoc
index 06ee76c..52c160e 100644
--- a/components/camel-test-spring/src/main/docs/test-spring.adoc
+++ b/components/camel-test-spring/src/main/docs/test-spring.adoc
@@ -118,7 +118,7 @@ public class FilterTest extends SpringRunWithTestSupport {
     @EndpointInject("mock:result")
     protected MockEndpoint resultEndpoint;
  
-    @Produce(uri = "direct:start")
+    @Produce("direct:start")
     protected ProducerTemplate template;
  
     @DirtiesContext
@@ -194,7 +194,7 @@ public class FilterTest extends AbstractJUnit4SpringContextTests {
     @EndpointInject("mock:result")
     protected MockEndpoint resultEndpoint;
  
-    @Produce(uri = "direct:start")
+    @Produce("direct:start")
     protected ProducerTemplate template;
  
     @DirtiesContext
@@ -363,7 +363,7 @@ public class CamelSpringJUnit4ClassRunnerPlainTest {
     @EndpointInject(value = "mock:c", context = "camelContext2")
     protected MockEndpoint mockC;
  
-    @Produce(uri = "direct:start2", context = "camelContext2")
+    @Produce("direct:start2", context = "camelContext2")
     protected ProducerTemplate start2;
  
     @EndpointInject(value = "mock:log:org.apache.camel.test.junit4.spring", context = "camelContext2")


[camel] 02/03: Camel-Jsonpath: Polished docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bd8b4c2a097a5e77e39e64ce65768c03deb2a974
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 16 12:04:26 2019 +0200

    Camel-Jsonpath: Polished docs
---
 components/camel-jsonpath/src/main/docs/jsonpath-language.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc b/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc
index 11e793b..eeabc29 100644
--- a/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc
+++ b/components/camel-jsonpath/src/main/docs/jsonpath-language.adoc
@@ -275,7 +275,7 @@ For example
 ----
 public class Foo {
     
-    @Consume(uri = "activemq:queue:books.new")
+    @Consume("activemq:queue:books.new")
     public void doSomething(@JsonPath("$.store.book[*].author") String author, @Body String json) {
       // process the inbound message here
     }