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
The following commit(s) were added to refs/heads/master by this push:
new e930fc3 Regen
e930fc3 is described below
commit e930fc38ccd2fa1602f416024c02018ee159ed71
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu May 16 14:39:07 2019 +0200
Regen
---
components/readme.adoc | 11 +----------
docs/components/modules/ROOT/pages/cdi.adoc | 8 ++++----
docs/components/modules/ROOT/pages/jsonpath-language.adoc | 2 +-
docs/components/modules/ROOT/pages/test-spring.adoc | 6 +++---
4 files changed, 9 insertions(+), 18 deletions(-)
diff --git a/components/readme.adoc b/components/readme.adoc
index 927e597..c738b94 100644
--- a/components/readme.adoc
+++ b/components/readme.adoc
@@ -1,7 +1,7 @@
==== Components
// components: START
-Number of Components: 295 in 232 JAR artifacts (0 deprecated)
+Number of Components: 292 in 229 JAR artifacts (0 deprecated)
[width="100%",cols="4,1,5",options="header"]
|===
@@ -112,12 +112,6 @@ Number of Components: 295 in 232 JAR artifacts (0
deprecated)
| link:camel-aws-ses/src/main/docs/aws-ses-component.adoc[AWS Simple Email
Service] (camel-aws-ses) +
`aws-ses:from` | 2.9 | The aws-ses component is used for sending emails with
Amazon's SES service.
-| link:camel-aws-sns/src/main/docs/aws-sns-component.adoc[AWS Simple
Notification System] (camel-aws-sns) +
-`aws-sns:topicNameOrArn` | 2.8 | The aws-sns component is used for sending
messages to an Amazon Simple Notification Topic.
-
-| link:camel-aws-sqs/src/main/docs/aws-sqs-component.adoc[AWS Simple Queue
Service] (camel-aws-sqs) +
-`aws-sqs:queueNameOrArn` | 2.6 | The aws-sqs component is used for sending and
receiving messages to Amazon's SQS service.
-
| link:camel-aws-swf/src/main/docs/aws-swf-component.adoc[AWS Simple Workflow]
(camel-aws-swf) +
`aws-swf:type` | 2.13 | The aws-swf component is used for managing workflows
from Amazon Simple Workflow.
@@ -760,9 +754,6 @@ Number of Components: 295 in 232 JAR artifacts (0
deprecated)
| link:camel-solr/src/main/docs/solr-component.adoc[Solr] (camel-solr) +
`solr:url` | 2.9 | The solr component allows you to interface with an Apache
Lucene Solr server.
-| link:camel-soroush/src/main/docs/soroush-component.adoc[SoroushBot]
(camel-soroush) +
-`soroush:<endpoint>[/authorizationToken][?options]` | 3.0 | this class
represents Soroush Endpoint, it is also a bean containing the configuration of
the Endpoint
-
| link:camel-spark-rest/src/main/docs/spark-rest-component.adoc[Spark Rest]
(camel-spark-rest) +
`spark-rest:verb:path` | 2.14 | The spark-rest component is used for hosting
REST services which has been defined using Camel rest-dsl.
diff --git a/docs/components/modules/ROOT/pages/cdi.adoc
b/docs/components/modules/ROOT/pages/cdi.adoc
index 21771b2..9b5bfbc 100644
--- a/docs/components/modules/ROOT/pages/cdi.adoc
+++ b/docs/components/modules/ROOT/pages/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) {
//...
}
diff --git a/docs/components/modules/ROOT/pages/jsonpath-language.adoc
b/docs/components/modules/ROOT/pages/jsonpath-language.adoc
index 11e793b..eeabc29 100644
--- a/docs/components/modules/ROOT/pages/jsonpath-language.adoc
+++ b/docs/components/modules/ROOT/pages/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
}
diff --git a/docs/components/modules/ROOT/pages/test-spring.adoc
b/docs/components/modules/ROOT/pages/test-spring.adoc
index 06ee76c..52c160e 100644
--- a/docs/components/modules/ROOT/pages/test-spring.adoc
+++ b/docs/components/modules/ROOT/pages/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")