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

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


The following commit(s) were added to refs/heads/main by this push:
     new a1b105e  CAMEL-17792: Reformat ElsqlConstants
a1b105e is described below

commit a1b105e76d4d43432745a1a2720eb17552c9dbda
Author: Nicolas Filotto <[email protected]>
AuthorDate: Mon Mar 21 17:31:13 2022 +0100

    CAMEL-17792: Reformat ElsqlConstants
---
 .../generated/resources/org/apache/camel/component/elsql/elsql.json   | 4 ++--
 .../main/java/org/apache/camel/component/elsql/ElsqlConstants.java    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-elsql/src/generated/resources/org/apache/camel/component/elsql/elsql.json
 
b/components/camel-elsql/src/generated/resources/org/apache/camel/component/elsql/elsql.json
index 0b52072..2a5b8c1 100644
--- 
a/components/camel-elsql/src/generated/resources/org/apache/camel/component/elsql/elsql.json
+++ 
b/components/camel-elsql/src/generated/resources/org/apache/camel/component/elsql/elsql.json
@@ -31,8 +31,8 @@
     "elSqlConfig": { "kind": "property", "displayName": "El Sql Config", 
"group": "advanced", "label": "advanced", "required": false, "type": "object", 
"javaType": "com.opengamma.elsql.ElSqlConfig", "deprecated": false, 
"autowired": false, "secret": false, "description": "To use a specific 
configured ElSqlConfig. It may be better to use the databaseVendor option 
instead." }
   },
   "headers": {
-    "CamelSqlUpdateCount": { "kind": "header", "displayName": "", "group": 
"common", "label": "", "required": false, "javaType": "Integer", "deprecated": 
false, "deprecationNote": "", "autowired": false, "secret": false, 
"description": "The number of rows updated for `update` operations, returned as 
an\n`Integer` object." },
-    "CamelSqlRowCount": { "kind": "header", "displayName": "", "group": 
"common", "label": "", "required": false, "javaType": "Integer", "deprecated": 
false, "deprecationNote": "", "autowired": false, "secret": false, 
"description": "The number of rows returned for `select` operations, returned 
as an\n`Integer` object." }
+    "CamelSqlUpdateCount": { "kind": "header", "displayName": "", "group": 
"producer", "label": "producer", "required": false, "javaType": "Integer", 
"deprecated": false, "deprecationNote": "", "autowired": false, "secret": 
false, "description": "The number of rows updated for `update` operations, 
returned as an\n`Integer` object." },
+    "CamelSqlRowCount": { "kind": "header", "displayName": "", "group": 
"producer", "label": "producer", "required": false, "javaType": "Integer", 
"deprecated": false, "deprecationNote": "", "autowired": false, "secret": 
false, "description": "The number of rows returned for `select` operations, 
returned as an\n`Integer` object." }
   },
   "properties": {
     "elsqlName": { "kind": "path", "displayName": "Elsql Name", "group": 
"common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "The name of the elsql to use (is NAMED 
in the elsql file)" },
diff --git 
a/components/camel-elsql/src/main/java/org/apache/camel/component/elsql/ElsqlConstants.java
 
b/components/camel-elsql/src/main/java/org/apache/camel/component/elsql/ElsqlConstants.java
index 4b55d49..82f78f1 100644
--- 
a/components/camel-elsql/src/main/java/org/apache/camel/component/elsql/ElsqlConstants.java
+++ 
b/components/camel-elsql/src/main/java/org/apache/camel/component/elsql/ElsqlConstants.java
@@ -22,11 +22,11 @@ import org.apache.camel.spi.Metadata;
 public final class ElsqlConstants {
 
     @Metadata(label = "producer", description = "The number of rows updated 
for `update` operations, returned as an\n" +
-                            "`Integer` object.",
+                                                "`Integer` object.",
               javaType = "Integer")
     public static final String SQL_UPDATE_COUNT = 
SqlConstants.SQL_UPDATE_COUNT;
     @Metadata(label = "producer", description = "The number of rows returned 
for `select` operations, returned as an\n" +
-                            "`Integer` object.",
+                                                "`Integer` object.",
               javaType = "Integer")
     public static final String SQL_ROW_COUNT = SqlConstants.SQL_ROW_COUNT;
 

Reply via email to