You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2020/09/03 08:53:52 UTC

[camel] branch master updated (dd545c0 -> 672a5ee)

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

jamesnetherton pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from dd545c0  Sync Properties
     new f11370a  Improve vertx-websocket component description
     new 672a5ee  Improve vertx-http component description

The 2 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:
 components/camel-vertx-http/pom.xml                            |  2 +-
 .../META-INF/services/org/apache/camel/component.properties    |  2 +-
 .../org/apache/camel/component/vertx/http/vertx-http.json      |  2 +-
 .../camel-vertx-http/src/main/docs/vertx-http-component.adoc   |  2 +-
 components/camel-vertx-websocket/pom.xml                       |  2 +-
 .../META-INF/services/org/apache/camel/component.properties    |  2 +-
 .../camel/component/vertx/websocket/vertx-websocket.json       |  2 +-
 .../src/main/docs/vertx-websocket-component.adoc               |  2 +-
 .../camel/builder/component/ComponentsBuilderFactory.java      |  5 +++--
 .../component/dsl/VertxHttpComponentBuilderFactory.java        |  4 ++--
 .../component/dsl/VertxWebsocketComponentBuilderFactory.java   |  6 ++++--
 core/camel-componentdsl/src/generated/resources/metadata.json  |  4 ++--
 .../apache/camel/builder/endpoint/StaticEndpointBuilders.java  | 10 ++++++----
 .../builder/endpoint/dsl/VertxHttpEndpointBuilderFactory.java  |  6 +++---
 .../endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java     |  9 ++++++---
 docs/components/modules/ROOT/pages/vertx-http-component.adoc   |  2 +-
 .../modules/ROOT/pages/vertx-websocket-component.adoc          |  2 +-
 17 files changed, 36 insertions(+), 28 deletions(-)


[camel] 02/02: Improve vertx-http component description

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

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

commit 672a5eed1ac165a63aadfba8555dc711c8e7b749
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Sep 3 09:46:56 2020 +0100

    Improve vertx-http component description
---
 components/camel-vertx-http/pom.xml                                 | 2 +-
 .../META-INF/services/org/apache/camel/component.properties         | 2 +-
 .../resources/org/apache/camel/component/vertx/http/vertx-http.json | 2 +-
 components/camel-vertx-http/src/main/docs/vertx-http-component.adoc | 2 +-
 .../apache/camel/builder/component/ComponentsBuilderFactory.java    | 2 +-
 .../builder/component/dsl/VertxHttpComponentBuilderFactory.java     | 4 ++--
 core/camel-componentdsl/src/generated/resources/metadata.json       | 2 +-
 .../org/apache/camel/builder/endpoint/StaticEndpointBuilders.java   | 4 ++--
 .../camel/builder/endpoint/dsl/VertxHttpEndpointBuilderFactory.java | 6 +++---
 docs/components/modules/ROOT/pages/vertx-http-component.adoc        | 2 +-
 10 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/components/camel-vertx-http/pom.xml b/components/camel-vertx-http/pom.xml
index 080d686..3d8d4b9 100644
--- a/components/camel-vertx-http/pom.xml
+++ b/components/camel-vertx-http/pom.xml
@@ -29,7 +29,7 @@
     <artifactId>camel-vertx-http</artifactId>
     <packaging>jar</packaging>
     <name>Camel :: Vert.x :: HTTP</name>
-    <description>Camel HTTP client support with Vert.x</description>
+    <description>Send requests to external HTTP servers using Vert.x</description>
 
     <properties>
     </properties>
diff --git a/components/camel-vertx-http/src/generated/resources/META-INF/services/org/apache/camel/component.properties b/components/camel-vertx-http/src/generated/resources/META-INF/services/org/apache/camel/component.properties
index 2a9493f..346144c 100644
--- a/components/camel-vertx-http/src/generated/resources/META-INF/services/org/apache/camel/component.properties
+++ b/components/camel-vertx-http/src/generated/resources/META-INF/services/org/apache/camel/component.properties
@@ -4,4 +4,4 @@ groupId=org.apache.camel
 artifactId=camel-vertx-http
 version=3.5.0-SNAPSHOT
 projectName=Camel :: Vert.x :: HTTP
-projectDescription=Camel HTTP client support with Vert.x
+projectDescription=Send requests to external HTTP servers using Vert.x
diff --git a/components/camel-vertx-http/src/generated/resources/org/apache/camel/component/vertx/http/vertx-http.json b/components/camel-vertx-http/src/generated/resources/org/apache/camel/component/vertx/http/vertx-http.json
index 39c36e1..dcc96cd 100644
--- a/components/camel-vertx-http/src/generated/resources/org/apache/camel/component/vertx/http/vertx-http.json
+++ b/components/camel-vertx-http/src/generated/resources/org/apache/camel/component/vertx/http/vertx-http.json
@@ -3,7 +3,7 @@
     "kind": "component",
     "name": "vertx-http",
     "title": "Vert.x HTTP Client",
-    "description": "Camel HTTP client support with Vert.x",
+    "description": "Send requests to external HTTP servers using Vert.x",
     "deprecated": false,
     "firstVersion": "3.5.0",
     "label": "http",
diff --git a/components/camel-vertx-http/src/main/docs/vertx-http-component.adoc b/components/camel-vertx-http/src/main/docs/vertx-http-component.adoc
index 1447def..eb74782 100644
--- a/components/camel-vertx-http/src/main/docs/vertx-http-component.adoc
+++ b/components/camel-vertx-http/src/main/docs/vertx-http-component.adoc
@@ -2,7 +2,7 @@
 = Vert.x HTTP Client Component
 :docTitle: Vert.x HTTP Client
 :artifactId: camel-vertx-http
-:description: Camel HTTP client support with Vert.x
+:description: Send requests to external HTTP servers using Vert.x
 :since: 3.5
 :supportLevel: Preview
 :component-header: Only producer is supported
diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
index 215d665..810f0e1 100644
--- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
+++ b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
@@ -3805,7 +3805,7 @@ public interface ComponentsBuilderFactory {
     }
     /**
      * Vert.x HTTP Client (camel-vertx-http)
-     * Camel HTTP client support with Vert.x
+     * Send requests to external HTTP servers using Vert.x
      * 
      * Category: http
      * Since: 3.5
diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxHttpComponentBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxHttpComponentBuilderFactory.java
index e2f9f90..d7bb44c 100644
--- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxHttpComponentBuilderFactory.java
+++ b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxHttpComponentBuilderFactory.java
@@ -23,7 +23,7 @@ import org.apache.camel.builder.component.ComponentBuilder;
 import org.apache.camel.component.vertx.http.VertxHttpComponent;
 
 /**
- * Camel HTTP client support with Vert.x
+ * Send requests to external HTTP servers using Vert.x
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
@@ -32,7 +32,7 @@ public interface VertxHttpComponentBuilderFactory {
 
     /**
      * Vert.x HTTP Client (camel-vertx-http)
-     * Camel HTTP client support with Vert.x
+     * Send requests to external HTTP servers using Vert.x
      * 
      * Category: http
      * Since: 3.5
diff --git a/core/camel-componentdsl/src/generated/resources/metadata.json b/core/camel-componentdsl/src/generated/resources/metadata.json
index 4d7b7c2..1806bd0 100644
--- a/core/camel-componentdsl/src/generated/resources/metadata.json
+++ b/core/camel-componentdsl/src/generated/resources/metadata.json
@@ -7755,7 +7755,7 @@
     "kind": "component",
     "name": "vertx-http",
     "title": "Vert.x HTTP Client",
-    "description": "Camel HTTP client support with Vert.x",
+    "description": "Send requests to external HTTP servers using Vert.x",
     "deprecated": false,
     "firstVersion": "3.5.0",
     "label": "http",
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index ad7d4f5..e23d868 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -14735,7 +14735,7 @@ public class StaticEndpointBuilders {
     }
     /**
      * Vert.x HTTP Client (camel-vertx-http)
-     * Camel HTTP client support with Vert.x
+     * Send requests to external HTTP servers using Vert.x
      * 
      * Category: http
      * Since: 3.5
@@ -14754,7 +14754,7 @@ public class StaticEndpointBuilders {
     }
     /**
      * Vert.x HTTP Client (camel-vertx-http)
-     * Camel HTTP client support with Vert.x
+     * Send requests to external HTTP servers using Vert.x
      * 
      * Category: http
      * Since: 3.5
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxHttpEndpointBuilderFactory.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxHttpEndpointBuilderFactory.java
index b345568..9b7f1cd 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxHttpEndpointBuilderFactory.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxHttpEndpointBuilderFactory.java
@@ -23,7 +23,7 @@ import org.apache.camel.builder.endpoint.AbstractEndpointBuilder;
 import org.apache.camel.spi.HeaderFilterStrategy;
 
 /**
- * Camel HTTP client support with Vert.x
+ * Send requests to external HTTP servers using Vert.x
  * 
  * Generated by camel build tools - do NOT edit this file!
  */
@@ -652,7 +652,7 @@ public interface VertxHttpEndpointBuilderFactory {
     public interface VertxHttpBuilders {
         /**
          * Vert.x HTTP Client (camel-vertx-http)
-         * Camel HTTP client support with Vert.x
+         * Send requests to external HTTP servers using Vert.x
          * 
          * Category: http
          * Since: 3.5
@@ -670,7 +670,7 @@ public interface VertxHttpEndpointBuilderFactory {
         }
         /**
          * Vert.x HTTP Client (camel-vertx-http)
-         * Camel HTTP client support with Vert.x
+         * Send requests to external HTTP servers using Vert.x
          * 
          * Category: http
          * Since: 3.5
diff --git a/docs/components/modules/ROOT/pages/vertx-http-component.adoc b/docs/components/modules/ROOT/pages/vertx-http-component.adoc
index afcd3c2..4c3afb4 100644
--- a/docs/components/modules/ROOT/pages/vertx-http-component.adoc
+++ b/docs/components/modules/ROOT/pages/vertx-http-component.adoc
@@ -4,7 +4,7 @@
 :page-source: components/camel-vertx-http/src/main/docs/vertx-http-component.adoc
 :docTitle: Vert.x HTTP Client
 :artifactId: camel-vertx-http
-:description: Camel HTTP client support with Vert.x
+:description: Send requests to external HTTP servers using Vert.x
 :since: 3.5
 :supportLevel: Preview
 :component-header: Only producer is supported


[camel] 01/02: Improve vertx-websocket component description

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

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

commit f11370a387f7da7271d2d9e9ee230fce4bee7906
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Sep 3 09:43:47 2020 +0100

    Improve vertx-websocket component description
---
 components/camel-vertx-websocket/pom.xml                         | 2 +-
 .../META-INF/services/org/apache/camel/component.properties      | 2 +-
 .../apache/camel/component/vertx/websocket/vertx-websocket.json  | 2 +-
 .../src/main/docs/vertx-websocket-component.adoc                 | 2 +-
 .../apache/camel/builder/component/ComponentsBuilderFactory.java | 3 ++-
 .../component/dsl/VertxWebsocketComponentBuilderFactory.java     | 6 ++++--
 core/camel-componentdsl/src/generated/resources/metadata.json    | 2 +-
 .../apache/camel/builder/endpoint/StaticEndpointBuilders.java    | 6 ++++--
 .../endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java       | 9 ++++++---
 .../components/modules/ROOT/pages/vertx-websocket-component.adoc | 2 +-
 10 files changed, 22 insertions(+), 14 deletions(-)

diff --git a/components/camel-vertx-websocket/pom.xml b/components/camel-vertx-websocket/pom.xml
index ce7cbb2..56ffd47 100644
--- a/components/camel-vertx-websocket/pom.xml
+++ b/components/camel-vertx-websocket/pom.xml
@@ -29,7 +29,7 @@
     <artifactId>camel-vertx-websocket</artifactId>
     <packaging>jar</packaging>
     <name>Camel :: Vert.x :: WebSocket</name>
-    <description>Camel WebSocket support with Vert.x</description>
+    <description>Expose WebSocket endpoints and connect to remote WebSocket servers using Vert.x</description>
 
     <properties>
     </properties>
diff --git a/components/camel-vertx-websocket/src/generated/resources/META-INF/services/org/apache/camel/component.properties b/components/camel-vertx-websocket/src/generated/resources/META-INF/services/org/apache/camel/component.properties
index deaafd6..1e6be79 100644
--- a/components/camel-vertx-websocket/src/generated/resources/META-INF/services/org/apache/camel/component.properties
+++ b/components/camel-vertx-websocket/src/generated/resources/META-INF/services/org/apache/camel/component.properties
@@ -4,4 +4,4 @@ groupId=org.apache.camel
 artifactId=camel-vertx-websocket
 version=3.5.0-SNAPSHOT
 projectName=Camel :: Vert.x :: WebSocket
-projectDescription=Camel WebSocket support with Vert.x
+projectDescription=Expose WebSocket endpoints and connect to remote WebSocket servers using Vert.x
diff --git a/components/camel-vertx-websocket/src/generated/resources/org/apache/camel/component/vertx/websocket/vertx-websocket.json b/components/camel-vertx-websocket/src/generated/resources/org/apache/camel/component/vertx/websocket/vertx-websocket.json
index e088918..8321c9e 100644
--- a/components/camel-vertx-websocket/src/generated/resources/org/apache/camel/component/vertx/websocket/vertx-websocket.json
+++ b/components/camel-vertx-websocket/src/generated/resources/org/apache/camel/component/vertx/websocket/vertx-websocket.json
@@ -3,7 +3,7 @@
     "kind": "component",
     "name": "vertx-websocket",
     "title": "Vert.x WebSocket",
-    "description": "Camel WebSocket support with Vert.x",
+    "description": "Expose WebSocket endpoints and connect to remote WebSocket servers using Vert.x",
     "deprecated": false,
     "firstVersion": "3.5.0",
     "label": "websocket",
diff --git a/components/camel-vertx-websocket/src/main/docs/vertx-websocket-component.adoc b/components/camel-vertx-websocket/src/main/docs/vertx-websocket-component.adoc
index 60fe854..0716240 100644
--- a/components/camel-vertx-websocket/src/main/docs/vertx-websocket-component.adoc
+++ b/components/camel-vertx-websocket/src/main/docs/vertx-websocket-component.adoc
@@ -2,7 +2,7 @@
 = Vert.x WebSocket Component
 :docTitle: Vert.x WebSocket
 :artifactId: camel-vertx-websocket
-:description: Camel WebSocket support with Vert.x
+:description: Expose WebSocket endpoints and connect to remote WebSocket servers using Vert.x
 :since: 3.5
 :supportLevel: Preview
 :component-header: Both producer and consumer are supported
diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
index 7d72ad8..215d665 100644
--- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
+++ b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
@@ -3816,7 +3816,8 @@ public interface ComponentsBuilderFactory {
     }
     /**
      * Vert.x WebSocket (camel-vertx-websocket)
-     * Camel WebSocket support with Vert.x
+     * Expose WebSocket endpoints and connect to remote WebSocket servers using
+     * Vert.x
      * 
      * Category: websocket
      * Since: 3.5
diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxWebsocketComponentBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxWebsocketComponentBuilderFactory.java
index 98be6e8..1b4502f 100644
--- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxWebsocketComponentBuilderFactory.java
+++ b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/VertxWebsocketComponentBuilderFactory.java
@@ -23,7 +23,8 @@ import org.apache.camel.builder.component.ComponentBuilder;
 import org.apache.camel.component.vertx.websocket.VertxWebsocketComponent;
 
 /**
- * Camel WebSocket support with Vert.x
+ * Expose WebSocket endpoints and connect to remote WebSocket servers using
+ * Vert.x
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
@@ -32,7 +33,8 @@ public interface VertxWebsocketComponentBuilderFactory {
 
     /**
      * Vert.x WebSocket (camel-vertx-websocket)
-     * Camel WebSocket support with Vert.x
+     * Expose WebSocket endpoints and connect to remote WebSocket servers using
+     * Vert.x
      * 
      * Category: websocket
      * Since: 3.5
diff --git a/core/camel-componentdsl/src/generated/resources/metadata.json b/core/camel-componentdsl/src/generated/resources/metadata.json
index 1521304..4d7b7c2 100644
--- a/core/camel-componentdsl/src/generated/resources/metadata.json
+++ b/core/camel-componentdsl/src/generated/resources/metadata.json
@@ -7778,7 +7778,7 @@
     "kind": "component",
     "name": "vertx-websocket",
     "title": "Vert.x WebSocket",
-    "description": "Camel WebSocket support with Vert.x",
+    "description": "Expose WebSocket endpoints and connect to remote WebSocket servers using Vert.x",
     "deprecated": false,
     "firstVersion": "3.5.0",
     "label": "websocket",
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index 713e0ba..ad7d4f5 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -14776,7 +14776,8 @@ public class StaticEndpointBuilders {
     }
     /**
      * Vert.x WebSocket (camel-vertx-websocket)
-     * Camel WebSocket support with Vert.x
+     * Expose WebSocket endpoints and connect to remote WebSocket servers using
+     * Vert.x
      * 
      * Category: websocket
      * Since: 3.5
@@ -14807,7 +14808,8 @@ public class StaticEndpointBuilders {
     }
     /**
      * Vert.x WebSocket (camel-vertx-websocket)
-     * Camel WebSocket support with Vert.x
+     * Expose WebSocket endpoints and connect to remote WebSocket servers using
+     * Vert.x
      * 
      * Category: websocket
      * Since: 3.5
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java
index e3d57a2..1b785a1 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/VertxWebsocketEndpointBuilderFactory.java
@@ -24,7 +24,8 @@ import org.apache.camel.builder.endpoint.AbstractEndpointBuilder;
 import org.apache.camel.spi.ExceptionHandler;
 
 /**
- * Camel WebSocket support with Vert.x
+ * Expose WebSocket endpoints and connect to remote WebSocket servers using
+ * Vert.x
  * 
  * Generated by camel build tools - do NOT edit this file!
  */
@@ -608,7 +609,8 @@ public interface VertxWebsocketEndpointBuilderFactory {
     public interface VertxWebsocketBuilders {
         /**
          * Vert.x WebSocket (camel-vertx-websocket)
-         * Camel WebSocket support with Vert.x
+         * Expose WebSocket endpoints and connect to remote WebSocket servers
+         * using Vert.x
          * 
          * Category: websocket
          * Since: 3.5
@@ -638,7 +640,8 @@ public interface VertxWebsocketEndpointBuilderFactory {
         }
         /**
          * Vert.x WebSocket (camel-vertx-websocket)
-         * Camel WebSocket support with Vert.x
+         * Expose WebSocket endpoints and connect to remote WebSocket servers
+         * using Vert.x
          * 
          * Category: websocket
          * Since: 3.5
diff --git a/docs/components/modules/ROOT/pages/vertx-websocket-component.adoc b/docs/components/modules/ROOT/pages/vertx-websocket-component.adoc
index d16a859..258dc4c 100644
--- a/docs/components/modules/ROOT/pages/vertx-websocket-component.adoc
+++ b/docs/components/modules/ROOT/pages/vertx-websocket-component.adoc
@@ -4,7 +4,7 @@
 :page-source: components/camel-vertx-websocket/src/main/docs/vertx-websocket-component.adoc
 :docTitle: Vert.x WebSocket
 :artifactId: camel-vertx-websocket
-:description: Camel WebSocket support with Vert.x
+:description: Expose WebSocket endpoints and connect to remote WebSocket servers using Vert.x
 :since: 3.5
 :supportLevel: Preview
 :component-header: Both producer and consumer are supported