You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2017/03/25 08:38:16 UTC

camel git commit: CAMEL-10735: deprecate camel-http. Update some titles/docs and polished.

Repository: camel
Updated Branches:
  refs/heads/master f1a3617cb -> b33d80bc6


CAMEL-10735: deprecate camel-http. Update some titles/docs and polished.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/b33d80bc
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b33d80bc
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b33d80bc

Branch: refs/heads/master
Commit: b33d80bc61e583fe4ab8efbcdc5c0a35b95ac3a5
Parents: f1a3617
Author: Claus Ibsen <da...@apache.org>
Authored: Sat Mar 25 09:38:06 2017 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Mar 25 09:38:06 2017 +0100

----------------------------------------------------------------------
 components/camel-http/pom.xml                    |  2 +-
 .../camel-http/src/main/docs/http-component.adoc |  4 ++--
 .../streams/ReactiveStreamsEndpoint.java         |  2 +-
 .../camel/component/sjms/SjmsEndpoint.java       |  2 +-
 .../camel/component/sjms2/Sjms2Endpoint.java     |  2 +-
 .../src/main/docs/sql-stored-component.adoc      |  6 +++---
 .../component/sql/stored/SqlStoredEndpoint.java  |  2 +-
 components/readme.adoc                           | 12 ++++++------
 ...forceUpsertContactConnectorConfiguration.java | 19 +++++++++++++++----
 .../main/resources/camel-connector-schema.json   |  8 ++++----
 docs/user-manual/en/SUMMARY.md                   |  2 +-
 .../ReactiveStreamsComponentConfiguration.java   |  2 +-
 .../SalesforceComponentConfiguration.java        |  2 +-
 .../springboot/SjmsComponentConfiguration.java   |  2 +-
 .../springboot/Sjms2ComponentConfiguration.java  |  2 +-
 15 files changed, 40 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-http/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-http/pom.xml b/components/camel-http/pom.xml
index b3b9d1d..c216bc6 100644
--- a/components/camel-http/pom.xml
+++ b/components/camel-http/pom.xml
@@ -26,7 +26,7 @@
 
   <artifactId>camel-http</artifactId>
   <packaging>jar</packaging>
-  <name>Camel :: HTTP</name>
+  <name>Camel :: HTTP (deprecated)</name>
   <description>Camel HTTP support</description>
 
   <properties>

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-http/src/main/docs/http-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-http/src/main/docs/http-component.adoc b/components/camel-http/src/main/docs/http-component.adoc
index ed0a20a..c56c007 100644
--- a/components/camel-http/src/main/docs/http-component.adoc
+++ b/components/camel-http/src/main/docs/http-component.adoc
@@ -1,4 +1,4 @@
-## HTTP Component
+## HTTP Component (deprecated)
 
 *Available as of Camel version 1.0*
 
@@ -545,4 +545,4 @@ keystore and truststore as described above, it will work fine.
 * link:endpoint.html[Endpoint]
 * link:getting-started.html[Getting Started]
 
-* link:jetty.html[Jetty]
+* link:jetty.html[Jetty]
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/ReactiveStreamsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/ReactiveStreamsEndpoint.java b/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/ReactiveStreamsEndpoint.java
index e2948fd..e7edf8a 100644
--- a/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/ReactiveStreamsEndpoint.java
+++ b/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/ReactiveStreamsEndpoint.java
@@ -25,7 +25,7 @@ import org.apache.camel.spi.UriParam;
 import org.apache.camel.spi.UriPath;
 
 /**
- * The Camel reactive-streams endpoint.
+ * Reactive Camel using reactive streams
  */
 @UriEndpoint(firstVersion = "2.19.0", scheme = "reactive-streams", title = "Reactive Streams", syntax = "reactive-streams:stream",
         consumerClass = ReactiveStreamsConsumer.class, label = "reactive,streams")

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/SjmsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/SjmsEndpoint.java b/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/SjmsEndpoint.java
index 220ec7c..77b53a1 100644
--- a/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/SjmsEndpoint.java
+++ b/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/SjmsEndpoint.java
@@ -58,7 +58,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * The sjms component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic.
+ * The sjms component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic (uses JMS 1.x API).
  *
  * This component uses plain JMS API where as the jms component uses Spring JMS.
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-sjms2/src/main/java/org/apache/camel/component/sjms2/Sjms2Endpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-sjms2/src/main/java/org/apache/camel/component/sjms2/Sjms2Endpoint.java b/components/camel-sjms2/src/main/java/org/apache/camel/component/sjms2/Sjms2Endpoint.java
index bce7afd..2694c3c 100644
--- a/components/camel-sjms2/src/main/java/org/apache/camel/component/sjms2/Sjms2Endpoint.java
+++ b/components/camel-sjms2/src/main/java/org/apache/camel/component/sjms2/Sjms2Endpoint.java
@@ -25,7 +25,7 @@ import org.apache.camel.spi.UriEndpoint;
 import org.apache.camel.spi.UriParam;
 
 /**
- * The sjms2 component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic.
+ * The sjms2 component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic (uses JMS 2.x API).
  *
  * This component uses plain JMS 2.x API where as the jms component uses Spring JMS.
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-sql/src/main/docs/sql-stored-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-sql/src/main/docs/sql-stored-component.adoc b/components/camel-sql/src/main/docs/sql-stored-component.adoc
index e1b55de..b18c23d 100644
--- a/components/camel-sql/src/main/docs/sql-stored-component.adoc
+++ b/components/camel-sql/src/main/docs/sql-stored-component.adoc
@@ -1,4 +1,4 @@
-## SQL StoredProcedure Component
+## SQL Stored Procedure Component
 
 *Available as of Camel version 2.17*
 
@@ -63,7 +63,7 @@ You can append query options to the URI in the following format,
 
 
 // component options: START
-The SQL StoredProcedure component supports 2 options which are listed below.
+The SQL Stored Procedure component supports 2 options which are listed below.
 
 
 
@@ -79,7 +79,7 @@ The SQL StoredProcedure component supports 2 options which are listed below.
 
 
 // endpoint options: START
-The SQL StoredProcedure endpoint is configured using URI syntax:
+The SQL Stored Procedure endpoint is configured using URI syntax:
 
     sql-stored:template
 

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java b/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
index 75c40f9..e8fff4a 100644
--- a/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
+++ b/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/SqlStoredEndpoint.java
@@ -31,7 +31,7 @@ import org.springframework.jdbc.core.JdbcTemplate;
 /**
  * The sql component allows you to work with databases using JDBC Stored Procedure queries.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "sql-stored", title = "SQL StoredProcedure", syntax = "sql-stored:template", producerOnly = true, label = "database,sql")
+@UriEndpoint(firstVersion = "2.17.0", scheme = "sql-stored", title = "SQL Stored Procedure", syntax = "sql-stored:template", producerOnly = true, label = "database,sql")
 public class SqlStoredEndpoint extends DefaultPollingEndpoint {
 
     private final CallableStatementWrapperFactory wrapperFactory;

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/components/readme.adoc
----------------------------------------------------------------------
diff --git a/components/readme.adoc b/components/readme.adoc
index 778861d..f65dbd5 100644
--- a/components/readme.adoc
+++ b/components/readme.adoc
@@ -2,7 +2,7 @@ Components
 ^^^^^^^^^^
 
 // components: START
-Number of Components: 225 in 179 JAR artifacts (13 deprecated)
+Number of Components: 225 in 179 JAR artifacts (14 deprecated)
 
 [width="100%",cols="4,1,5",options="header"]
 |=======================================================================
@@ -279,7 +279,7 @@ Number of Components: 225 in 179 JAR artifacts (13 deprecated)
 `hipchat:protocol:host:port` | 2.15 | The hipchat component supports producing and consuming messages from/to Hipchat service.
 
 | link:camel-http/src/main/docs/http-component.adoc[HTTP] (camel-http) +
-`http:httpUri` | 1.0 | For calling out to external HTTP servers using Apache HTTP Client 3.x.
+`http:httpUri` | 1.0 | *deprecated* For calling out to external HTTP servers using Apache HTTP Client 3.x.
 
 | link:camel-http4/src/main/docs/http4-component.adoc[HTTP4] (camel-http4) +
 `http4:httpUri` | 2.3 | For calling out to external HTTP servers using Apache HTTP Client 4.x.
@@ -498,7 +498,7 @@ Number of Components: 225 in 179 JAR artifacts (13 deprecated)
 `rabbitmq:hostname:portNumber/exchangeName` | 2.12 | The rabbitmq component allows you produce and consume messages from RabbitMQ instances.
 
 | link:camel-reactive-streams/src/main/docs/reactive-streams-component.adoc[Reactive Streams] (camel-reactive-streams) +
-`reactive-streams:stream` | 2.19 | The Camel reactive-streams endpoint.
+`reactive-streams:stream` | 2.19 | Reactive Camel using reactive streams
 
 | link:../camel-core/src/main/docs/ref-component.adoc[Ref] (camel-core) +
 `ref:name` | 1.2 | The ref component is used for lookup of existing endpoints bound in the Registry.
@@ -552,13 +552,13 @@ Number of Components: 225 in 179 JAR artifacts (13 deprecated)
 `sftp:host:port/directoryName` | 1.1 | The sftp (FTP over SSH) component is used for uploading or downloading files from SFTP servers.
 
 | link:camel-sjms/src/main/docs/sjms-component.adoc[Simple JMS] (camel-sjms) +
-`sjms:destinationType:destinationName` | 2.11 | The sjms component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic.
+`sjms:destinationType:destinationName` | 2.11 | The sjms component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic (uses JMS 1.x API).
 
 | link:camel-sjms/src/main/docs/sjms-batch-component.adoc[Simple JMS Batch] (camel-sjms) +
 `sjms-batch:destinationName` | 2.16 | The sjms-batch component is a specialized for highly performant transactional batch consumption from a JMS queue.
 
 | link:camel-sjms2/src/main/docs/sjms2-component.adoc[Simple JMS2] (camel-sjms2) +
-`sjms2:destinationType:destinationName` | 2.19 | The sjms2 component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic.
+`sjms2:destinationType:destinationName` | 2.19 | The sjms2 component (simple jms) allows messages to be sent to (or consumed from) a JMS Queue or Topic (uses JMS 2.x API).
 
 | link:camel-sip/src/main/docs/sip-component.adoc[SIP] (camel-sip) +
 `sip:uri` | 2.5 | To send and receive messages using the SIP protocol (used in telco and mobile).
@@ -602,7 +602,7 @@ Number of Components: 225 in 179 JAR artifacts (13 deprecated)
 | link:camel-sql/src/main/docs/sql-component.adoc[SQL] (camel-sql) +
 `sql:query` | 1.4 | The sql component allows you to work with databases using JDBC SQL queries.
 
-| link:camel-sql/src/main/docs/sql-stored-component.adoc[SQL StoredProcedure] (camel-sql) +
+| link:camel-sql/src/main/docs/sql-stored-component.adoc[SQL Stored Procedure] (camel-sql) +
 `sql-stored:template` | 2.17 | The sql component allows you to work with databases using JDBC Stored Procedure queries.
 
 | link:camel-ssh/src/main/docs/ssh-component.adoc[SSH] (camel-ssh) +

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/connectors/examples/salesforce-upsert-contact-connector/src/main/java/org/foo/salesforce/contact/springboot/SalesforceUpsertContactConnectorConfiguration.java
----------------------------------------------------------------------
diff --git a/connectors/examples/salesforce-upsert-contact-connector/src/main/java/org/foo/salesforce/contact/springboot/SalesforceUpsertContactConnectorConfiguration.java b/connectors/examples/salesforce-upsert-contact-connector/src/main/java/org/foo/salesforce/contact/springboot/SalesforceUpsertContactConnectorConfiguration.java
index 12dc735..52484a2 100644
--- a/connectors/examples/salesforce-upsert-contact-connector/src/main/java/org/foo/salesforce/contact/springboot/SalesforceUpsertContactConnectorConfiguration.java
+++ b/connectors/examples/salesforce-upsert-contact-connector/src/main/java/org/foo/salesforce/contact/springboot/SalesforceUpsertContactConnectorConfiguration.java
@@ -28,19 +28,30 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
 public class SalesforceUpsertContactConnectorConfiguration {
 
     /**
-     * Salesforce login URL defaults to https://login.salesforce.com
+     * URL of the Salesforce instance by default set to
+     * https://login.salesforce.com
      */
     private String loginUrl = "https://login.salesforce.com";
     /**
-     * Salesforce connected application Consumer Key
+     * OAuth Consumer Key of the connected app configured in the Salesforce
+     * instance setup. Typically a connected app needs to be configured but one
+     * can be provided by installing a package.
      */
     private String clientId;
     /**
-     * Salesforce connected application Consumer Secret
+     * OAuth Consumer Secret of the connected app configured in the Salesforce
+     * instance setup.
      */
     private String clientSecret;
     /**
-     * Salesforce connected application Consumer token
+     * Refresh token already obtained in the refresh token OAuth flow. One needs
+     * to setup a web application and configure a callback URL to receive the
+     * refresh token or configure using the builtin callback at
+     * https://login.salesforce.com/services/oauth2/success or
+     * https://test.salesforce.com/services/oauth2/success and then retrive the
+     * refresh_token from the URL at the end of the flow. Note that in
+     * development organizations Salesforce allows hosting the callback web
+     * application at localhost.
      */
     private String refreshToken;
 

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/connectors/examples/salesforce-upsert-contact-connector/src/main/resources/camel-connector-schema.json
----------------------------------------------------------------------
diff --git a/connectors/examples/salesforce-upsert-contact-connector/src/main/resources/camel-connector-schema.json b/connectors/examples/salesforce-upsert-contact-connector/src/main/resources/camel-connector-schema.json
index 7fbb5dd..b552235 100644
--- a/connectors/examples/salesforce-upsert-contact-connector/src/main/resources/camel-connector-schema.json
+++ b/connectors/examples/salesforce-upsert-contact-connector/src/main/resources/camel-connector-schema.json
@@ -17,10 +17,10 @@
     "version": "2.19.0-SNAPSHOT"
   },
   "componentProperties": {
-    "loginUrl": { "kind": "property", "displayName": "Login Url", "group": "security", "label": "security", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": false, "defaultValue": "https://login.salesforce.com", "description": "Salesforce login URL defaults to https://login.salesforce.com" },
-    "clientId": { "kind": "property", "displayName": "Client Id", "group": "security", "label": "security", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": true, "description": "Salesforce connected application Consumer Key" },
-    "clientSecret": { "kind": "property", "displayName": "Client Secret", "group": "security", "label": "security", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": true, "description": "Salesforce connected application Consumer Secret" },
-    "refreshToken": { "kind": "property", "displayName": "Refresh Token", "group": "security", "label": "security", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": true, "description": "Salesforce connected application Consumer token" }
+    "loginUrl": { "kind": "property", "displayName": "Login Url", "group": "security", "label": "common,security", "required": true, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": false, "defaultValue": "https://login.salesforce.com", "description": "URL of the Salesforce instance by default set to https://login.salesforce.com" },
+    "clientId": { "kind": "property", "displayName": "Client Id", "group": "security", "label": "common,security", "required": true, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": true, "description": "OAuth Consumer Key of the connected app configured in the Salesforce instance setup. Typically a connected app needs to be configured but one can be provided by installing a package." },
+    "clientSecret": { "kind": "property", "displayName": "Client Secret", "group": "security", "label": "common,security", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": true, "description": "OAuth Consumer Secret of the connected app configured in the Salesforce instance setup." },
+    "refreshToken": { "kind": "property", "displayName": "Refresh Token", "group": "security", "label": "common,security", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": true, "description": "Refresh token already obtained in the refresh token OAuth flow. One needs to setup a web application and configure a callback URL to receive the refresh token or configure using the builtin callback at https://login.salesforce.com/services/oauth2/success or https://test.salesforce.com/services/oauth2/success and then retrive the refresh_token from the URL at the end of the flow. Note that in development organizations Salesforce allows hosting the callback web application at localhost." }
   },
   "properties": {
     "sObjectIdName": { "kind": "parameter", "displayName": "SObject Id Name", "group": "common", "required": true, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": false, "description": "SObject external ID field name" },

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/docs/user-manual/en/SUMMARY.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md
index cd12eef..c4b602f 100644
--- a/docs/user-manual/en/SUMMARY.md
+++ b/docs/user-manual/en/SUMMARY.md
@@ -303,7 +303,7 @@
 	* [Spring Redis](spring-redis-component.adoc)
 	* [Spring WebService](spring-ws-component.adoc)
 	* [SQL](sql-component.adoc)
-	* [SQL StoredProcedure](sql-stored-component.adoc)
+	* [SQL Stored Procedure](sql-stored-component.adoc)
 	* [SSH](ssh-component.adoc)
 	* [StAX](stax-component.adoc)
 	* [Stomp](stomp-component.adoc)

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
index 78915c6..b33267f 100644
--- a/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
@@ -20,7 +20,7 @@ import org.apache.camel.component.reactive.streams.ReactiveStreamsBackpressureSt
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
- * The Camel reactive-streams endpoint.
+ * Reactive Camel using reactive streams
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
index 52f5a4b..5ae2470 100644
--- a/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
@@ -491,7 +491,7 @@ public class SalesforceComponentConfiguration {
          * Whether to update an existing Push Topic when using the Streaming
          * API, defaults to false
          */
-        private Boolean updateTopic;
+        private Boolean updateTopic = false;
         /**
          * Notify for fields, options are ALL, REFERENCED, SELECT, WHERE
          */

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
index 20e3401..f099d09 100644
--- a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
@@ -28,7 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
 
 /**
  * The sjms component (simple jms) allows messages to be sent to (or consumed
- * from) a JMS Queue or Topic.
+ * from) a JMS Queue or Topic (uses JMS 1.x API).
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */

http://git-wip-us.apache.org/repos/asf/camel/blob/b33d80bc/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
index 107e31f..a4a503b 100644
--- a/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
@@ -29,7 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
 
 /**
  * The sjms2 component (simple jms) allows messages to be sent to (or consumed
- * from) a JMS Queue or Topic.
+ * from) a JMS Queue or Topic (uses JMS 2.x API).
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */