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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 34726f9542f Regen
34726f9542f is described below

commit 34726f9542f5f7b73d5b9eb4ac9ce33601fc7715
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Jan 8 15:56:32 2026 +0100

    Regen
---
 .../org/apache/camel/springboot/catalog/components/sql-stored.json | 2 +-
 components-starter/camel-sql-starter/src/main/docs/sql.json        | 2 +-
 .../sql/stored/springboot/SqlStoredComponentConfiguration.java     | 7 +++----
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sql-stored.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sql-stored.json
index 0f06f6d914c..a93f6cadd29 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sql-stored.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/sql-stored.json
@@ -27,7 +27,7 @@
     "dataSource": { "index": 0, "kind": "property", "displayName": "Data 
Source", "group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "javax.sql.DataSource", "deprecated": false, "autowired": true, 
"secret": false, "description": "Sets the DataSource to use to communicate with 
the database." },
     "lazyStartProducer": { "index": 1, "kind": "property", "displayName": 
"Lazy Start Producer", "group": "producer", "label": "producer", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, "description": 
"Whether the producer should be started lazy (on the first message). By 
starting lazy you can use this to allow CamelContext and routes to startup in 
situations where a producer may otherwise fail [...]
     "autowiredEnabled": { "index": 2, "kind": "property", "displayName": 
"Autowired Enabled", "group": "advanced", "label": "advanced", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": true, "description": 
"Whether autowiring is enabled. This is used for automatic autowiring options 
(the option must be marked as autowired) by looking up in the registry to find 
if there is a single instance of matching t [...]
-    "serviceLocationEnabled": { "index": 3, "kind": "property", "displayName": 
"Service Location Enabled", "group": "advanced", "label": "advanced", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Whether to detect the network address location of the JMS 
broker on startup. This information is gathered via reflection on the 
ConnectionFactory, and is vendor specific. This option can [...]
+    "serviceLocationEnabled": { "index": 3, "kind": "property", "displayName": 
"Service Location Enabled", "group": "advanced", "label": "advanced", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": true, 
"description": "Whether to detect the network address location of the database 
on startup. This information is gathered via reflection on the DataSource, and 
is vendor specific. This option can be used  [...]
   },
   "headers": {
     "CamelSqlStoredTemplate": { "index": 0, "kind": "header", "displayName": 
"", "group": "producer", "label": "producer", "required": false, "javaType": 
"String", "deprecated": false, "deprecationNote": "", "autowired": false, 
"secret": false, "description": "The template", "constantName": 
"org.apache.camel.component.sql.stored.SqlStoredConstants#SQL_STORED_TEMPLATE" 
},
diff --git a/components-starter/camel-sql-starter/src/main/docs/sql.json 
b/components-starter/camel-sql-starter/src/main/docs/sql.json
index c48dfad3e3a..510debc6b97 100644
--- a/components-starter/camel-sql-starter/src/main/docs/sql.json
+++ b/components-starter/camel-sql-starter/src/main/docs/sql.json
@@ -52,7 +52,7 @@
     {
       "name": "camel.component.sql-stored.service-location-enabled",
       "type": "java.lang.Boolean",
-      "description": "Whether to detect the network address location of the 
JMS broker on startup. This information is gathered via reflection on the 
ConnectionFactory, and is vendor specific. This option can be used to turn this 
off.",
+      "description": "Whether to detect the network address location of the 
database on startup. This information is gathered via reflection on the 
DataSource, and is vendor specific. This option can be used to turn this off.",
       "sourceType": 
"org.apache.camel.component.sql.stored.springboot.SqlStoredComponentConfiguration",
       "defaultValue": true
     },
diff --git 
a/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
 
b/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
index d3e3769e2e6..780f807645c 100644
--- 
a/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
+++ 
b/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
@@ -61,10 +61,9 @@ public class SqlStoredComponentConfiguration
      */
     private Boolean autowiredEnabled = true;
     /**
-     * Whether to detect the network address location of the JMS broker on
-     * startup. This information is gathered via reflection on the
-     * ConnectionFactory, and is vendor specific. This option can be used to
-     * turn this off.
+     * Whether to detect the network address location of the database on
+     * startup. This information is gathered via reflection on the DataSource,
+     * and is vendor specific. This option can be used to turn this off.
      */
     private Boolean serviceLocationEnabled = true;
 

Reply via email to