You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2022/03/14 01:19:57 UTC

[camel] branch camel-3.16.x updated (27300d1 -> 9560e5d)

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

gzurowski pushed a change to branch camel-3.16.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 27300d1  CAMEL-17608: camel-salesforce: Use sObjectName option better
     new 6599769  [Minor] Fix imports
     new 0a69817  [Minor] Fix imports
     new cbc25da  [Minor] Apply formatter
     new 9560e5d  [Minor] Apply formatter

The 4 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:
 .../test/java/org/apache/camel/component/atom/JettyTestServer.java    | 1 -
 .../resources/org/apache/camel/dataformat/barcode/barcode.json        | 4 ++--
 .../component/beanstalk/integration/BuryProducerIntegrationIT.java    | 2 --
 .../component/beanstalk/integration/DeleteProducerIntegrationIT.java  | 2 --
 .../component/beanstalk/integration/PutProducerIntegrationIT.java     | 2 --
 .../component/beanstalk/integration/ReleaseProducerIntegrationIT.java | 2 --
 .../component/beanstalk/integration/TouchProducerIntegrationIT.java   | 2 --
 .../resources/org/apache/camel/dataformat/bindy/csv/bindyCsv.json     | 4 ++--
 .../resources/org/apache/camel/dataformat/bindy/fixed/bindyFixed.json | 4 ++--
 .../resources/org/apache/camel/dataformat/bindy/kvp/bindyKvp.json     | 4 ++--
 .../java/org/apache/camel/dataformat/bindy/UnicodeHelperTest.java     | 2 --
 11 files changed, 8 insertions(+), 21 deletions(-)

[camel] 03/04: [Minor] Apply formatter

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

gzurowski pushed a commit to branch camel-3.16.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit cbc25dad21c056506e289b7e949a9086b48c4027
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Sun Mar 13 21:11:16 2022 -0400

    [Minor] Apply formatter
---
 .../resources/org/apache/camel/dataformat/barcode/barcode.json        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-barcode/src/generated/resources/org/apache/camel/dataformat/barcode/barcode.json b/components/camel-barcode/src/generated/resources/org/apache/camel/dataformat/barcode/barcode.json
index e0908f7..6b0441b 100644
--- a/components/camel-barcode/src/generated/resources/org/apache/camel/dataformat/barcode/barcode.json
+++ b/components/camel-barcode/src/generated/resources/org/apache/camel/dataformat/barcode/barcode.json
@@ -16,10 +16,10 @@
     "modelJavaType": "org.apache.camel.model.dataformat.BarcodeDataFormat"
   },
   "properties": {
-    "barcodeFormat": { "kind": "attribute", "displayName": "Barcode Format", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Barcode format such as QR-Code" },
-    "imageType": { "kind": "attribute", "displayName": "Image Type", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Image type of the barcode such as png" },
     "width": { "kind": "attribute", "displayName": "Width", "required": false, "type": "integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, "description": "Width of the barcode" },
     "height": { "kind": "attribute", "displayName": "Height", "required": false, "type": "integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, "description": "Height of the barcode" },
+    "imageType": { "kind": "attribute", "displayName": "Image Type", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Image type of the barcode such as png" },
+    "barcodeFormat": { "kind": "attribute", "displayName": "Barcode Format", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Barcode format such as QR-Code" },
     "id": { "kind": "attribute", "displayName": "Id", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "The id of this node" }
   }
 }

[camel] 01/04: [Minor] Fix imports

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

gzurowski pushed a commit to branch camel-3.16.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 65997693f784f7c6bcda4c32dd9416f69d5c4630
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Sun Mar 13 21:07:04 2022 -0400

    [Minor] Fix imports
---
 .../src/test/java/org/apache/camel/component/atom/JettyTestServer.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java b/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java
index 2c2d95e..afa4ff0 100644
--- a/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java
+++ b/components/camel-atom/src/test/java/org/apache/camel/component/atom/JettyTestServer.java
@@ -20,7 +20,6 @@ import java.io.File;
 import java.io.IOException;
 import java.nio.charset.StandardCharsets;
 
-import javax.servlet.ServletException;
 import javax.servlet.http.HttpServlet;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;

[camel] 04/04: [Minor] Apply formatter

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

gzurowski pushed a commit to branch camel-3.16.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9560e5dbc52da81d65960497f6e2e96b3f54a8a3
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Sun Mar 13 21:14:30 2022 -0400

    [Minor] Apply formatter
---
 .../resources/org/apache/camel/dataformat/bindy/csv/bindyCsv.json     | 4 ++--
 .../resources/org/apache/camel/dataformat/bindy/fixed/bindyFixed.json | 4 ++--
 .../resources/org/apache/camel/dataformat/bindy/kvp/bindyKvp.json     | 4 ++--
 .../java/org/apache/camel/dataformat/bindy/UnicodeHelperTest.java     | 2 --
 4 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/csv/bindyCsv.json b/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/csv/bindyCsv.json
index a65643d..e3c2a06 100644
--- a/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/csv/bindyCsv.json
+++ b/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/csv/bindyCsv.json
@@ -18,9 +18,9 @@
   "properties": {
     "type": { "kind": "attribute", "displayName": "Type", "required": true, "type": "enum", "javaType": "org.apache.camel.model.dataformat.BindyType", "enum": [ "Csv", "Fixed", "KeyValue" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "Csv", "description": "Whether to use Csv, Fixed, or KeyValue." },
     "classType": { "kind": "attribute", "displayName": "Class Type", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Name of model class to use." },
+    "locale": { "kind": "attribute", "displayName": "Locale", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default" },
+    "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap Single Instance", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List." },
     "allowEmptyStream": { "kind": "attribute", "displayName": "Allow Empty Stream", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether to allow empty streams in the unmarshal process. If true, no exception will be thrown when a body without records is provided." },
-    "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap Single Instance", "label": "advanced", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List." },
-    "locale": { "kind": "attribute", "displayName": "Locale", "label": "advanced", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default" },
     "id": { "kind": "attribute", "displayName": "Id", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "The id of this node" }
   }
 }
diff --git a/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/fixed/bindyFixed.json b/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/fixed/bindyFixed.json
index 65e0643..f9eed6f 100644
--- a/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/fixed/bindyFixed.json
+++ b/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/fixed/bindyFixed.json
@@ -18,9 +18,9 @@
   "properties": {
     "type": { "kind": "attribute", "displayName": "Type", "required": true, "type": "enum", "javaType": "org.apache.camel.model.dataformat.BindyType", "enum": [ "Csv", "Fixed", "KeyValue" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "Fixed", "description": "Whether to use Csv, Fixed, or KeyValue." },
     "classType": { "kind": "attribute", "displayName": "Class Type", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Name of model class to use." },
+    "locale": { "kind": "attribute", "displayName": "Locale", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default" },
+    "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap Single Instance", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List." },
     "allowEmptyStream": { "kind": "attribute", "displayName": "Allow Empty Stream", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether to allow empty streams in the unmarshal process. If true, no exception will be thrown when a body without records is provided." },
-    "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap Single Instance", "label": "advanced", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List." },
-    "locale": { "kind": "attribute", "displayName": "Locale", "label": "advanced", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default" },
     "id": { "kind": "attribute", "displayName": "Id", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "The id of this node" }
   }
 }
diff --git a/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/kvp/bindyKvp.json b/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/kvp/bindyKvp.json
index 0bab368..ddbdfd6 100644
--- a/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/kvp/bindyKvp.json
+++ b/components/camel-bindy/src/generated/resources/org/apache/camel/dataformat/bindy/kvp/bindyKvp.json
@@ -18,9 +18,9 @@
   "properties": {
     "type": { "kind": "attribute", "displayName": "Type", "required": true, "type": "enum", "javaType": "org.apache.camel.model.dataformat.BindyType", "enum": [ "Csv", "Fixed", "KeyValue" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "KeyValue", "description": "Whether to use Csv, Fixed, or KeyValue." },
     "classType": { "kind": "attribute", "displayName": "Class Type", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Name of model class to use." },
+    "locale": { "kind": "attribute", "displayName": "Locale", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default" },
+    "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap Single Instance", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List." },
     "allowEmptyStream": { "kind": "attribute", "displayName": "Allow Empty Stream", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether to allow empty streams in the unmarshal process. If true, no exception will be thrown when a body without records is provided." },
-    "unwrapSingleInstance": { "kind": "attribute", "displayName": "Unwrap Single Instance", "label": "advanced", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List." },
-    "locale": { "kind": "attribute", "displayName": "Locale", "label": "advanced", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default" },
     "id": { "kind": "attribute", "displayName": "Id", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "The id of this node" }
   }
 }
diff --git a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/UnicodeHelperTest.java b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/UnicodeHelperTest.java
index e82c8df..42f0389 100644
--- a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/UnicodeHelperTest.java
+++ b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/UnicodeHelperTest.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.dataformat.bindy;
 
-import java.io.FileNotFoundException;
-import java.io.IOException;
 import java.util.Arrays;
 import java.util.stream.Collectors;
 

[camel] 02/04: [Minor] Fix imports

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

gzurowski pushed a commit to branch camel-3.16.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0a69817df1d94bf10403c0c8bfdbc06c7ef6022d
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Sun Mar 13 21:08:36 2022 -0400

    [Minor] Fix imports
---
 .../component/beanstalk/integration/BuryProducerIntegrationIT.java      | 2 --
 .../component/beanstalk/integration/DeleteProducerIntegrationIT.java    | 2 --
 .../camel/component/beanstalk/integration/PutProducerIntegrationIT.java | 2 --
 .../component/beanstalk/integration/ReleaseProducerIntegrationIT.java   | 2 --
 .../component/beanstalk/integration/TouchProducerIntegrationIT.java     | 2 --
 5 files changed, 10 deletions(-)

diff --git a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/BuryProducerIntegrationIT.java b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/BuryProducerIntegrationIT.java
index 71686f2..a3395e7 100644
--- a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/BuryProducerIntegrationIT.java
+++ b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/BuryProducerIntegrationIT.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.beanstalk.integration;
 
-import java.io.IOException;
-
 import com.surftools.BeanstalkClient.Job;
 import org.apache.camel.CamelExecutionException;
 import org.apache.camel.EndpointInject;
diff --git a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/DeleteProducerIntegrationIT.java b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/DeleteProducerIntegrationIT.java
index cd8f11f..eab830e 100644
--- a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/DeleteProducerIntegrationIT.java
+++ b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/DeleteProducerIntegrationIT.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.beanstalk.integration;
 
-import java.io.IOException;
-
 import com.surftools.BeanstalkClient.Job;
 import org.apache.camel.CamelExecutionException;
 import org.apache.camel.EndpointInject;
diff --git a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/PutProducerIntegrationIT.java b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/PutProducerIntegrationIT.java
index 7b097bb..3749527 100644
--- a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/PutProducerIntegrationIT.java
+++ b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/PutProducerIntegrationIT.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.beanstalk.integration;
 
-import java.io.IOException;
-
 import com.surftools.BeanstalkClient.Job;
 import org.apache.camel.Endpoint;
 import org.apache.camel.EndpointInject;
diff --git a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/ReleaseProducerIntegrationIT.java b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/ReleaseProducerIntegrationIT.java
index 0748de9..1910df4 100644
--- a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/ReleaseProducerIntegrationIT.java
+++ b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/ReleaseProducerIntegrationIT.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.beanstalk.integration;
 
-import java.io.IOException;
-
 import com.surftools.BeanstalkClient.Job;
 import org.apache.camel.CamelExecutionException;
 import org.apache.camel.EndpointInject;
diff --git a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/TouchProducerIntegrationIT.java b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/TouchProducerIntegrationIT.java
index c8fcc04..5c40ca6 100644
--- a/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/TouchProducerIntegrationIT.java
+++ b/components/camel-beanstalk/src/test/java/org/apache/camel/component/beanstalk/integration/TouchProducerIntegrationIT.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.beanstalk.integration;
 
-import java.io.IOException;
-
 import com.surftools.BeanstalkClient.Job;
 import org.apache.camel.CamelExecutionException;
 import org.apache.camel.EndpointInject;