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 2023/05/24 07:57:14 UTC

[camel-kamelets] branch 1475-2 created (now a46ea7a4)

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

acosentino pushed a change to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at a46ea7a4 Bean: Use properties instead of property with key and value - JMS AMQP Sink

This branch includes the following new commits:

     new a510cb5b Bean: Use properties instead of property with key and value - Extract Field Action
     new 25333937 Bean: Use properties instead of property with key and value - Extract Field Action
     new 269388f2 Bean: Use properties instead of property with key and value - Insert Field Action
     new 7ff59774 Bean: Use properties instead of property with key and value - Insert Field Action
     new 2b7d4e80 Bean: Use properties instead of property with key and value - JMS AMQP Source
     new 84e10cce Bean: Use properties instead of property with key and value - JMS AMQP Source
     new 934317c1 Bean: Use properties instead of property with key and value - JMS AMQP Sink
     new a46ea7a4 Bean: Use properties instead of property with key and value - JMS AMQP Sink

The 8 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.



[camel-kamelets] 03/08: Bean: Use properties instead of property with key and value - Insert Field Action

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 269388f27f7a64b037a605f43ea42ae362395fd2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:42:11 2023 +0200

    Bean: Use properties instead of property with key and value - Insert Field Action
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/insert-field-action.kamelet.yaml | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/kamelets/insert-field-action.kamelet.yaml b/kamelets/insert-field-action.kamelet.yaml
index 614624d4..ca78f9b4 100644
--- a/kamelets/insert-field-action.kamelet.yaml
+++ b/kamelets/insert-field-action.kamelet.yaml
@@ -58,11 +58,9 @@ spec:
     beans:
       - name: insertField
         type: "#class:org.apache.camel.kamelets.utils.transform.InsertField"
-        property:
-          - key: field
-            value: '{{field}}'
-          - key: value
-            value: '{{value}}'
+        properties:
+          field: '{{field}}'
+          value: '{{value}}'
     from:
       uri: kamelet:source
       steps:


[camel-kamelets] 01/08: Bean: Use properties instead of property with key and value - Extract Field Action

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit a510cb5b067d3f548031f4d9956d6a8bed5d961c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:29:38 2023 +0200

    Bean: Use properties instead of property with key and value - Extract Field Action
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/extract-field-action.kamelet.yaml | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

diff --git a/kamelets/extract-field-action.kamelet.yaml b/kamelets/extract-field-action.kamelet.yaml
index d8a77278..12458953 100644
--- a/kamelets/extract-field-action.kamelet.yaml
+++ b/kamelets/extract-field-action.kamelet.yaml
@@ -88,19 +88,12 @@ spec:
     beans:
       - name: extractField
         type: "#class:org.apache.camel.kamelets.utils.transform.ExtractField"
-        property:
-          - key: field
-            value: '{{field}}'
-          - key: headerOutput
-            value: '{{headerOutput}}'
-          - key: headerOutput
-            value: '{{headerOutput}}'
-          - key: headerOutputName
-            value: '{{headerOutputName}}'
-          - key: strictHeaderCheck
-            value: '{{strictHeaderCheck}}'
-          - key: trimField
-            value: '{{trimField}}'
+        properties:
+          field: '{{field}}'
+          headerOutput: '{{headerOutput}}'
+          headerOutputName: '{{headerOutputName}}'
+          strictHeaderCheck: '{{strictHeaderCheck}}'
+          trimField: '{{trimField}}'
     from:
       uri: kamelet:source
       steps:


[camel-kamelets] 04/08: Bean: Use properties instead of property with key and value - Insert Field Action

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 7ff59774fac82dc84924938282dda369c461819e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:45:58 2023 +0200

    Bean: Use properties instead of property with key and value - Insert Field Action
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/insert-field-action.kamelet.yaml  | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/insert-field-action.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/insert-field-action.kamelet.yaml
index 614624d4..ca78f9b4 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/insert-field-action.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/insert-field-action.kamelet.yaml
@@ -58,11 +58,9 @@ spec:
     beans:
       - name: insertField
         type: "#class:org.apache.camel.kamelets.utils.transform.InsertField"
-        property:
-          - key: field
-            value: '{{field}}'
-          - key: value
-            value: '{{value}}'
+        properties:
+          field: '{{field}}'
+          value: '{{value}}'
     from:
       uri: kamelet:source
       steps:


[camel-kamelets] 02/08: Bean: Use properties instead of property with key and value - Extract Field Action

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 253339374c7056f45e7ce9e841bb76a2d437f265
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:31:55 2023 +0200

    Bean: Use properties instead of property with key and value - Extract Field Action
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../kamelets/extract-field-action.kamelet.yaml        | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/extract-field-action.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/extract-field-action.kamelet.yaml
index d8a77278..12458953 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/extract-field-action.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/extract-field-action.kamelet.yaml
@@ -88,19 +88,12 @@ spec:
     beans:
       - name: extractField
         type: "#class:org.apache.camel.kamelets.utils.transform.ExtractField"
-        property:
-          - key: field
-            value: '{{field}}'
-          - key: headerOutput
-            value: '{{headerOutput}}'
-          - key: headerOutput
-            value: '{{headerOutput}}'
-          - key: headerOutputName
-            value: '{{headerOutputName}}'
-          - key: strictHeaderCheck
-            value: '{{strictHeaderCheck}}'
-          - key: trimField
-            value: '{{trimField}}'
+        properties:
+          field: '{{field}}'
+          headerOutput: '{{headerOutput}}'
+          headerOutputName: '{{headerOutputName}}'
+          strictHeaderCheck: '{{strictHeaderCheck}}'
+          trimField: '{{trimField}}'
     from:
       uri: kamelet:source
       steps:


[camel-kamelets] 08/08: Bean: Use properties instead of property with key and value - JMS AMQP Sink

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit a46ea7a41638a879958de28d76ae5c350e01a68d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:52:39 2023 +0200

    Bean: Use properties instead of property with key and value - JMS AMQP Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/jms-amqp-10-sink.kamelet.yaml        | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-sink.kamelet.yaml
index 52bbfa31..07d1034d 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-sink.kamelet.yaml
@@ -59,9 +59,8 @@ spec:
     beans:
       - name: connectionFactoryBean
         type: "#class:org.apache.qpid.jms.JmsConnectionFactory"
-        property:
-          - key: remoteURI
-            value: '{{remoteURI}}'
+        properties:
+          remoteURI: '{{remoteURI}}'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 06/08: Bean: Use properties instead of property with key and value - JMS AMQP Source

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 84e10cce8fba8a2af9575c09f78e37376bbc6e44
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:49:28 2023 +0200

    Bean: Use properties instead of property with key and value - JMS AMQP Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/jms-amqp-10-source.kamelet.yaml      | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-source.kamelet.yaml
index 3a0f4131..e93a9866 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/jms-amqp-10-source.kamelet.yaml
@@ -59,9 +59,8 @@ spec:
     beans:
       - name: connectionFactoryBean
         type: "#class:org.apache.qpid.jms.JmsConnectionFactory"
-        property:
-          - key: remoteURI
-            value: '{{remoteURI}}'
+        properties:
+          remoteURI: '{{remoteURI}}'
     from:
       uri: "jms:{{destinationType}}:{{destinationName}}"
       parameters:


[camel-kamelets] 05/08: Bean: Use properties instead of property with key and value - JMS AMQP Source

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 2b7d4e80b529fbca66890412f6bd02e5cf89276f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:47:00 2023 +0200

    Bean: Use properties instead of property with key and value - JMS AMQP Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/jms-amqp-10-source.kamelet.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kamelets/jms-amqp-10-source.kamelet.yaml b/kamelets/jms-amqp-10-source.kamelet.yaml
index 3a0f4131..e93a9866 100644
--- a/kamelets/jms-amqp-10-source.kamelet.yaml
+++ b/kamelets/jms-amqp-10-source.kamelet.yaml
@@ -59,9 +59,8 @@ spec:
     beans:
       - name: connectionFactoryBean
         type: "#class:org.apache.qpid.jms.JmsConnectionFactory"
-        property:
-          - key: remoteURI
-            value: '{{remoteURI}}'
+        properties:
+          remoteURI: '{{remoteURI}}'
     from:
       uri: "jms:{{destinationType}}:{{destinationName}}"
       parameters:


[camel-kamelets] 07/08: Bean: Use properties instead of property with key and value - JMS AMQP Sink

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

acosentino pushed a commit to branch 1475-2
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 934317c1442ec530c4b4a58680ed003d08744a4d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed May 24 09:52:02 2023 +0200

    Bean: Use properties instead of property with key and value - JMS AMQP Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/jms-amqp-10-sink.kamelet.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kamelets/jms-amqp-10-sink.kamelet.yaml b/kamelets/jms-amqp-10-sink.kamelet.yaml
index 52bbfa31..07d1034d 100644
--- a/kamelets/jms-amqp-10-sink.kamelet.yaml
+++ b/kamelets/jms-amqp-10-sink.kamelet.yaml
@@ -59,9 +59,8 @@ spec:
     beans:
       - name: connectionFactoryBean
         type: "#class:org.apache.qpid.jms.JmsConnectionFactory"
-        property:
-          - key: remoteURI
-            value: '{{remoteURI}}'
+        properties:
+          remoteURI: '{{remoteURI}}'
     from:
       uri: "kamelet:source"
       steps: