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 2020/07/17 13:32:40 UTC

[camel] branch master updated (2640f1e -> 6dec08b)

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 2640f1e  CAMEL-15266: Contributing guide cleanup (#4010)
     new f0028ea  Upgrade Jandex to version 2.2.1.Final
     new 6dec08b  Regen

The 2 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:
 camel-dependencies/pom.xml                                 |  2 +-
 .../org/apache/camel/catalog/docs/aws2-sqs-component.adoc  | 14 +++++++++++++-
 .../camel/builder/endpoint/StaticEndpointBuilders.java     | 12 ++++++------
 parent/pom.xml                                             |  2 +-
 4 files changed, 21 insertions(+), 9 deletions(-)


[camel] 02/02: Regen

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 6dec08b35b2d2f5d5fc082e921766ba841e87443
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jul 17 15:31:53 2020 +0200

    Regen
---
 camel-dependencies/pom.xml                                 |  2 +-
 .../org/apache/camel/catalog/docs/aws2-sqs-component.adoc  | 14 +++++++++++++-
 .../camel/builder/endpoint/StaticEndpointBuilders.java     | 12 ++++++------
 3 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 7ce4efb..c7e7009 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -298,7 +298,7 @@
     <jakarta-jaxb-version>2.3.2</jakarta-jaxb-version>
     <jakarta-mail-version>1.6.5</jakarta-mail-version>
     <jakarta.el-version>3.0.3</jakarta.el-version>
-    <jandex-version>2.1.3.Final</jandex-version>
+    <jandex-version>2.2.1.Final</jandex-version>
     <jasminb-jsonapi-version>0.10</jasminb-jsonapi-version>
     <jasn1-version>1.11.3</jasn1-version>
     <jasypt-version>1.9.3</jasypt-version>
diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-sqs-component.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-sqs-component.adoc
index f75220c..f12458d 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-sqs-component.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-sqs-component.adoc
@@ -334,7 +334,19 @@ You can set a `SendMessageBatchRequest` or an `Iterable`
 
 ------------------------------------------------------------------------------------------------------
 from("direct:start")
-  .setHeader(SqsConstants.SQS_OPERATION, constant("sendBatchMessage")).to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)&region=EU_WEST_1");
+  .setHeader(SqsConstants.SQS_OPERATION, constant("sendBatchMessage"))
+  .process(new Processor() {
+      @Override
+      public void process(Exchange exchange) throws Exception {
+          Collection c = new ArrayList<Integer>();
+          c.add("team1");
+          c.add("team2");
+          c.add("team3");
+          c.add("team4");
+          exchange.getIn().setBody(c);					
+      }
+  })
+  .to("aws2-sqs://camel-1?accessKey=RAW(xxx)&secretKey=RAW(xxx)&region=EU_WEST_1");
 ------------------------------------------------------------------------------------------------------
 
 As result you'll get an exchange containing a `SendMessageBatchResult` instance, that you can examinate to check what messages were successfull and what not.
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index 42a04e1..b9421b5 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -11729,7 +11729,7 @@ public class StaticEndpointBuilders {
      * 
      * @param path stream
      */
-    static org.apache.camel.builder.endpoint.dsl.ReactiveStreamsEndpointBuilderFactory.ReactiveStreamsEndpointBuilder reactiveStreams(
+    public static org.apache.camel.builder.endpoint.dsl.ReactiveStreamsEndpointBuilderFactory.ReactiveStreamsEndpointBuilder reactiveStreams(
             String path) {
         return org.apache.camel.builder.endpoint.dsl.ReactiveStreamsEndpointBuilderFactory.endpointBuilder("reactive-streams", path);
     }
@@ -11751,7 +11751,7 @@ public class StaticEndpointBuilders {
      * instead of the default name
      * @param path stream
      */
-    static org.apache.camel.builder.endpoint.dsl.ReactiveStreamsEndpointBuilderFactory.ReactiveStreamsEndpointBuilder reactiveStreams(
+    public static org.apache.camel.builder.endpoint.dsl.ReactiveStreamsEndpointBuilderFactory.ReactiveStreamsEndpointBuilder reactiveStreams(
             String componentName,
             String path) {
         return org.apache.camel.builder.endpoint.dsl.ReactiveStreamsEndpointBuilderFactory.endpointBuilder(componentName, path);
@@ -14671,7 +14671,7 @@ public class StaticEndpointBuilders {
      * 
      * @param path nodeAddress
      */
-    static org.apache.camel.builder.endpoint.dsl.Web3jEndpointBuilderFactory.Web3jEndpointBuilder web3j(
+    public static org.apache.camel.builder.endpoint.dsl.Web3jEndpointBuilderFactory.Web3jEndpointBuilder web3j(
             String path) {
         return org.apache.camel.builder.endpoint.dsl.Web3jEndpointBuilderFactory.endpointBuilder("web3j", path);
     }
@@ -14692,7 +14692,7 @@ public class StaticEndpointBuilders {
      * instead of the default name
      * @param path nodeAddress
      */
-    static org.apache.camel.builder.endpoint.dsl.Web3jEndpointBuilderFactory.Web3jEndpointBuilder web3j(
+    public static org.apache.camel.builder.endpoint.dsl.Web3jEndpointBuilderFactory.Web3jEndpointBuilder web3j(
             String componentName,
             String path) {
         return org.apache.camel.builder.endpoint.dsl.Web3jEndpointBuilderFactory.endpointBuilder(componentName, path);
@@ -15471,7 +15471,7 @@ public class StaticEndpointBuilders {
      * 
      * @param path serverUrls/path
      */
-    public static org.apache.camel.builder.endpoint.dsl.ZooKeeperEndpointBuilderFactory.ZooKeeperEndpointBuilder zookeeper(
+    static org.apache.camel.builder.endpoint.dsl.ZooKeeperEndpointBuilderFactory.ZooKeeperEndpointBuilder zookeeper(
             String path) {
         return org.apache.camel.builder.endpoint.dsl.ZooKeeperEndpointBuilderFactory.endpointBuilder("zookeeper", path);
     }
@@ -15495,7 +15495,7 @@ public class StaticEndpointBuilders {
      * instead of the default name
      * @param path serverUrls/path
      */
-    public static org.apache.camel.builder.endpoint.dsl.ZooKeeperEndpointBuilderFactory.ZooKeeperEndpointBuilder zookeeper(
+    static org.apache.camel.builder.endpoint.dsl.ZooKeeperEndpointBuilderFactory.ZooKeeperEndpointBuilder zookeeper(
             String componentName,
             String path) {
         return org.apache.camel.builder.endpoint.dsl.ZooKeeperEndpointBuilderFactory.endpointBuilder(componentName, path);


[camel] 01/02: Upgrade Jandex to version 2.2.1.Final

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 f0028eaf06f498c10abc9660914b29c314845f30
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jul 17 14:41:15 2020 +0200

    Upgrade Jandex to version 2.2.1.Final
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 79c7325..3e49f74 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -274,7 +274,7 @@
         <jackrabbit-version>2.21.2</jackrabbit-version>
         <jain-sip-ri-bundle-version>1.2.154_2</jain-sip-ri-bundle-version>
         <jasminb-jsonapi-version>0.10</jasminb-jsonapi-version>
-        <jandex-version>2.1.3.Final</jandex-version>
+        <jandex-version>2.2.1.Final</jandex-version>
         <jasn1-version>1.11.3</jasn1-version>
         <jasypt-version>1.9.3</jasypt-version>
         <java-apns-version>1.0.0.Beta6</java-apns-version>