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/07/10 20:26:56 UTC

[1/7] camel git commit: CAMEL-11529: Fixed wrong syntax in ignite component.

Repository: camel
Updated Branches:
  refs/heads/camel-2.19.x 6ae3b8faa -> 78851c0a1
  refs/heads/master fbf76f60c -> 34a054426


CAMEL-11529: Fixed wrong syntax in ignite component.


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

Branch: refs/heads/master
Commit: 4784bbf5c3984b22c2e5acab2f2571912e725c74
Parents: fbf76f6
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:18:48 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:18:48 2017 +0200

----------------------------------------------------------------------
 components/camel-ignite/src/main/docs/ignite-cache-component.adoc  | 2 +-
 .../camel-ignite/src/main/docs/ignite-compute-component.adoc       | 2 +-
 components/camel-ignite/src/main/docs/ignite-events-component.adoc | 2 +-
 components/camel-ignite/src/main/docs/ignite-idgen-component.adoc  | 2 +-
 .../camel-ignite/src/main/docs/ignite-messaging-component.adoc     | 2 +-
 components/camel-ignite/src/main/docs/ignite-queue-component.adoc  | 2 +-
 components/camel-ignite/src/main/docs/ignite-set-component.adoc    | 2 +-
 .../apache/camel/component/ignite/cache/IgniteCacheEndpoint.java   | 2 +-
 .../camel/component/ignite/compute/IgniteComputeEndpoint.java      | 2 +-
 .../apache/camel/component/ignite/events/IgniteEventsEndpoint.java | 2 +-
 .../apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java   | 2 +-
 .../camel/component/ignite/messaging/IgniteMessagingEndpoint.java  | 2 +-
 .../apache/camel/component/ignite/queue/IgniteQueueEndpoint.java   | 2 +-
 .../org/apache/camel/component/ignite/set/IgniteSetEndpoint.java   | 2 +-
 14 files changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-cache-component.adoc b/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
index 57ca5f4..500bd95 100644
--- a/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
@@ -29,7 +29,7 @@ The Ignite Cache component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Cache endpoint is configured using URI syntax:
 
-    ignite-cache:[cacheName]
+    ignite-cache:cacheName
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-compute-component.adoc b/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
index e823737..7ddc600 100644
--- a/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
@@ -30,7 +30,7 @@ The Ignite Compute component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Compute endpoint is configured using URI syntax:
 
-    ignite-compute:[endpointId]
+    ignite-compute:endpointId
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-events-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-events-component.adoc b/components/camel-ignite/src/main/docs/ignite-events-component.adoc
index ebd22d2..514ac88 100644
--- a/components/camel-ignite/src/main/docs/ignite-events-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-events-component.adoc
@@ -27,7 +27,7 @@ The Ignite Events component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Events endpoint is configured using URI syntax:
 
-    ignite-events:[endpointId]
+    ignite-events:endpointId
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc b/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
index 6ac0cb7..67d44d4 100644
--- a/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
@@ -26,7 +26,7 @@ The Ignite ID Generator component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite ID Generator endpoint is configured using URI syntax:
 
-    ignite-idgen:[name]
+    ignite-idgen:name
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc b/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
index c676166..21ed4c3 100644
--- a/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
@@ -26,7 +26,7 @@ The Ignite Messaging component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Messaging endpoint is configured using URI syntax:
 
-    ignite-messaging:[topic]
+    ignite-messaging:topic
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-queue-component.adoc b/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
index 85ab02c..6518f0b 100644
--- a/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
@@ -26,7 +26,7 @@ The Ignite Queues component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Queues endpoint is configured using URI syntax:
 
-    ignite-queue:[name]
+    ignite-queue:name
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/docs/ignite-set-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-set-component.adoc b/components/camel-ignite/src/main/docs/ignite-set-component.adoc
index 29c4ed2..6d2b7a6 100644
--- a/components/camel-ignite/src/main/docs/ignite-set-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-set-component.adoc
@@ -26,7 +26,7 @@ The Ignite Sets component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Sets endpoint is configured using URI syntax:
 
-    ignite-set:[name]
+    ignite-set:name
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
index 4cd4a0b..c6451c2 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
@@ -44,7 +44,7 @@ import org.apache.ignite.cache.query.Query;
  * This offers both a Producer (to invoke cache operations on an Ignite cache) and
  * a Consumer (to consume changes from a continuous query).
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-cache", title = "Ignite Cache", syntax = "ignite-cache:[cacheName]", label = "nosql,cache,compute", 
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-cache", title = "Ignite Cache", syntax = "ignite-cache:cacheName", label = "nosql,cache,compute",
     consumerClass = IgniteCacheContinuousQueryConsumer.class)
 public class IgniteCacheEndpoint extends AbstractIgniteEndpoint {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
index bf49dd3..cac13d2 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
@@ -39,7 +39,7 @@ import org.apache.ignite.IgniteCompute;
  * or collections of them, along with their parameters if necessary.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-compute", title = "Ignite Compute", syntax = "ignite-compute:[endpointId]", label = "nosql,cache,compute", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-compute", title = "Ignite Compute", syntax = "ignite-compute:endpointId", label = "nosql,cache,compute", producerOnly = true)
 public class IgniteComputeEndpoint extends AbstractIgniteEndpoint {
 
     @UriPath @Metadata(required = "true")

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
index bd902ab..c7df13e 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
@@ -46,7 +46,7 @@ import org.slf4j.LoggerFactory;
  * This endpoint only supports consumers.
  * The Exchanges created by this consumer put the received Event object into the body of the IN message.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-events", title = "Ignite Events", syntax = "ignite-events:[endpointId]", label = "nosql,cache,compute,messaging,data", 
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-events", title = "Ignite Events", syntax = "ignite-events:endpointId", label = "nosql,cache,compute,messaging,data",
     consumerOnly = true, consumerClass = IgniteEventsConsumer.class)
 public class IgniteEventsEndpoint extends AbstractIgniteEndpoint {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
index 34e1605..ca1971d 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
@@ -38,7 +38,7 @@ import org.slf4j.LoggerFactory;
  * <a href="https://apacheignite.readme.io/docs/id-generator">Ignite Atomic Sequences and ID Generators</a>.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-idgen", title = "Ignite ID Generator", syntax = "ignite-idgen:[name]", label = "nosql,cache,compute", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-idgen", title = "Ignite ID Generator", syntax = "ignite-idgen:name", label = "nosql,cache,compute", producerOnly = true)
 public class IgniteIdGenEndpoint extends AbstractIgniteEndpoint {
 
     private static final Logger LOG = LoggerFactory.getLogger(IgniteIdGenEndpoint.class);

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
index 97b522c..8b9df4b 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
@@ -37,7 +37,7 @@ import org.apache.ignite.IgniteMessaging;
  * consume messages from an <a href="https://apacheignite.readme.io/docs/messaging">Ignite topic</a>.
  * This endpoint supports producers (to send messages) and consumers (to receive messages).
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-messaging", title = "Ignite Messaging", syntax = "ignite-messaging:[topic]", label = "nosql,cache,messaging", 
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-messaging", title = "Ignite Messaging", syntax = "ignite-messaging:topic", label = "nosql,cache,messaging",
     consumerClass = IgniteMessagingConsumer.class)
 public class IgniteMessagingEndpoint extends AbstractIgniteEndpoint {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
index 1b87129..7df01bb 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
@@ -39,7 +39,7 @@ import org.apache.ignite.configuration.CollectionConfiguration;
  * <a href="https://apacheignite.readme.io/docs/queue-and-set">Ignite Queue data structures</a>.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-queue", title = "Ignite Queues", syntax = "ignite-queue:[name]", label = "nosql,cache", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-queue", title = "Ignite Queues", syntax = "ignite-queue:name", label = "nosql,cache", producerOnly = true)
 public class IgniteQueueEndpoint extends AbstractIgniteEndpoint {
 
     @UriPath @Metadata(required = "true")

http://git-wip-us.apache.org/repos/asf/camel/blob/4784bbf5/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
index d441098..6b38e0c 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
@@ -38,7 +38,7 @@ import org.apache.ignite.configuration.CollectionConfiguration;
  * <a href="https://apacheignite.readme.io/docs/queue-and-set">Ignite Set data structures</a>.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-set", title = "Ignite Sets", syntax = "ignite-set:[name]", label = "nosql,cache", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-set", title = "Ignite Sets", syntax = "ignite-set:name", label = "nosql,cache", producerOnly = true)
 public class IgniteSetEndpoint extends AbstractIgniteEndpoint {
 
     @UriPath @Metadata(required = "true")


[6/7] camel git commit: CAMEL-11529: Fixed wrong syntax in couchbase component.

Posted by da...@apache.org.
CAMEL-11529: Fixed wrong syntax in couchbase component.


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

Branch: refs/heads/camel-2.19.x
Commit: 9a136cd4f1d933b7cd0c70a7b009cb4be4ff9531
Parents: 3ec3286
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:21:52 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:26:39 2017 +0200

----------------------------------------------------------------------
 .../camel-couchbase/src/main/docs/couchbase-component.adoc   | 8 ++++----
 .../apache/camel/component/couchbase/CouchbaseComponent.java | 2 --
 .../apache/camel/component/couchbase/CouchbaseEndpoint.java  | 5 +++--
 3 files changed, 7 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/9a136cd4/components/camel-couchbase/src/main/docs/couchbase-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-couchbase/src/main/docs/couchbase-component.adoc b/components/camel-couchbase/src/main/docs/couchbase-component.adoc
index 01d9825..7f3b4b0 100644
--- a/components/camel-couchbase/src/main/docs/couchbase-component.adoc
+++ b/components/camel-couchbase/src/main/docs/couchbase-component.adoc
@@ -35,27 +35,27 @@ The Couchbase component has no options.
 // endpoint options: START
 The Couchbase endpoint is configured using URI syntax:
 
-    couchbase:url
+    couchbase:protocol:hostname:port
 
 with the following path and query parameters:
 
-#### Path Parameters (2 parameters):
+#### Path Parameters (3 parameters):
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |=======================================================================
 | Name | Description | Default | Type
 | **protocol** | *Required* The protocol to use |  | String
 | **hostname** | *Required* The hostname to use |  | String
+| **port** | The port number to use | 8091 | int
 |=======================================================================
 
-#### Query Parameters (48 parameters):
+#### Query Parameters (47 parameters):
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |=======================================================================
 | Name | Description | Default | Type
 | **bucket** (common) | The bucket to use |  | String
 | **key** (common) | The key to use |  | String
-| **port** (common) | The port number to use | 8091 | int
 | **bridgeErrorHandler** (consumer) | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN or ERROR level and ignored. | false | boolean
 | **consumerProcessedStrategy** (consumer) | Define the consumer Processed strategy to use | none | String
 | **descending** (consumer) | Define if this operation is descending or not | false | boolean

http://git-wip-us.apache.org/repos/asf/camel/blob/9a136cd4/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
----------------------------------------------------------------------
diff --git a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
index 74f02c1..a47c6f9 100644
--- a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
+++ b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
@@ -24,11 +24,9 @@ import org.apache.camel.impl.DefaultComponent;
 /**
  * Couchbase component.
  */
-
 public class CouchbaseComponent extends DefaultComponent {
 
     public CouchbaseComponent() {
-
     }
 
     public CouchbaseComponent(CamelContext context) {

http://git-wip-us.apache.org/repos/asf/camel/blob/9a136cd4/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
index b03a208..563c405 100644
--- a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
+++ b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
@@ -57,7 +57,7 @@ import static org.apache.camel.component.couchbase.CouchbaseConstants.DEFAULT_VI
  * Represents a Couchbase endpoint that can query Views with a Poll strategy
  * and/or produce various type of operations.
  */
-@UriEndpoint(firstVersion = "2.19.0", scheme = "couchbase", title = "Couchbase", syntax = "couchbase:url", consumerClass = CouchbaseConsumer.class, label = "database,nosql")
+@UriEndpoint(firstVersion = "2.19.0", scheme = "couchbase", title = "Couchbase", syntax = "couchbase:protocol:hostname:port", consumerClass = CouchbaseConsumer.class, label = "database,nosql")
 public class CouchbaseEndpoint extends ScheduledPollEndpoint {
 
     @UriPath
@@ -66,8 +66,9 @@ public class CouchbaseEndpoint extends ScheduledPollEndpoint {
     @UriPath
     @Metadata(required = "true")
     private String hostname;
-    @UriParam(defaultValue = "8091")
+    @UriPath(defaultValue = "8091")
     private int port;
+
     @UriParam
     private String bucket;
 


[4/7] camel git commit: Regen

Posted by da...@apache.org.
Regen


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

Branch: refs/heads/master
Commit: 34a0544269397446492332c26eba1034e0eb5df8
Parents: 48b7188
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:26:11 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:26:11 2017 +0200

----------------------------------------------------------------------
 components/readme.adoc | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/34a05442/components/readme.adoc
----------------------------------------------------------------------
diff --git a/components/readme.adoc b/components/readme.adoc
index 20ba98d..12e60c2 100644
--- a/components/readme.adoc
+++ b/components/readme.adoc
@@ -165,7 +165,7 @@ Number of Components: 275 in 189 JAR artifacts (17 deprecated)
 `controlbus:command:language` | 2.11 | The controlbus component provides easy management of Camel applications based on the Control Bus EIP pattern.
 
 | link:camel-couchbase/src/main/docs/couchbase-component.adoc[Couchbase] (camel-couchbase) +
-`couchbase:url` | 2.19 | Represents a Couchbase endpoint that can query Views with a Poll strategy and/or produce various type of operations.
+`couchbase:protocol:hostname:port` | 2.19 | Represents a Couchbase endpoint that can query Views with a Poll strategy and/or produce various type of operations.
 
 | link:camel-couchdb/src/main/docs/couchdb-component.adoc[CouchDB] (camel-couchdb) +
 `couchdb:protocol:hostname:port/database` | 2.11 | The couchdb component is used for integrate with CouchDB databases.
@@ -348,25 +348,25 @@ Number of Components: 275 in 189 JAR artifacts (17 deprecated)
 `ibatis:statement` | 1.2 | *deprecated* Performs a query poll insert update or delete in a relational database using Apache iBATIS.
 
 | link:camel-ignite/src/main/docs/ignite-cache-component.adoc[Ignite Cache] (camel-ignite) +
-`ignite-cache:[cacheName]` | 2.17 | The Ignite Cache endpoint is one of camel-ignite endpoints which allows you to interact with an Ignite Cache.
+`ignite-cache:cacheName` | 2.17 | The Ignite Cache endpoint is one of camel-ignite endpoints which allows you to interact with an Ignite Cache.
 
 | link:camel-ignite/src/main/docs/ignite-compute-component.adoc[Ignite Compute] (camel-ignite) +
-`ignite-compute:[endpointId]` | 2.17 | The Ignite Compute endpoint is one of camel-ignite endpoints which allows you to run compute operations on the cluster by passing in an IgniteCallable an IgniteRunnable an IgniteClosure or collections of them along with their parameters if necessary.
+`ignite-compute:endpointId` | 2.17 | The Ignite Compute endpoint is one of camel-ignite endpoints which allows you to run compute operations on the cluster by passing in an IgniteCallable an IgniteRunnable an IgniteClosure or collections of them along with their parameters if necessary.
 
 | link:camel-ignite/src/main/docs/ignite-events-component.adoc[Ignite Events] (camel-ignite) +
-`ignite-events:[endpointId]` | 2.17 | The Ignite Events endpoint is one of camel-ignite endpoints which allows you to receive events from the Ignite cluster by creating a local event listener.
+`ignite-events:endpointId` | 2.17 | The Ignite Events endpoint is one of camel-ignite endpoints which allows you to receive events from the Ignite cluster by creating a local event listener.
 
 | link:camel-ignite/src/main/docs/ignite-idgen-component.adoc[Ignite ID Generator] (camel-ignite) +
-`ignite-idgen:[name]` | 2.17 | The Ignite ID Generator endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Atomic Sequences and ID Generators.
+`ignite-idgen:name` | 2.17 | The Ignite ID Generator endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Atomic Sequences and ID Generators.
 
 | link:camel-ignite/src/main/docs/ignite-messaging-component.adoc[Ignite Messaging] (camel-ignite) +
-`ignite-messaging:[topic]` | 2.17 | The Ignite Messaging endpoint is one of camel-ignite endpoints which allows you to send and consume messages from an Ignite topic.
+`ignite-messaging:topic` | 2.17 | The Ignite Messaging endpoint is one of camel-ignite endpoints which allows you to send and consume messages from an Ignite topic.
 
 | link:camel-ignite/src/main/docs/ignite-queue-component.adoc[Ignite Queues] (camel-ignite) +
-`ignite-queue:[name]` | 2.17 | The Ignite Queue endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Queue data structures.
+`ignite-queue:name` | 2.17 | The Ignite Queue endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Queue data structures.
 
 | link:camel-ignite/src/main/docs/ignite-set-component.adoc[Ignite Sets] (camel-ignite) +
-`ignite-set:[name]` | 2.17 | The Ignite Sets endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Set data structures.
+`ignite-set:name` | 2.17 | The Ignite Sets endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Set data structures.
 
 | link:camel-infinispan/src/main/docs/infinispan-component.adoc[Infinispan] (camel-infinispan) +
 `infinispan:cacheName` | 2.13 | For reading/writing from/to Infinispan distributed key/value store and data grid.
@@ -558,7 +558,7 @@ Number of Components: 275 in 189 JAR artifacts (17 deprecated)
 `netty4-http:protocol:host:port/path` | 2.14 | Netty HTTP server and client using the Netty 4.x library.
 
 | link:camel-olingo2/camel-olingo2-component/src/main/docs/olingo2-component.adoc[Olingo2] (camel-olingo2) +
-`olingo2:apiName/methodName` | 2.14 | Communicates with OData 2.0 services using Apache Olingo.
+`olingo2:apiName/methodName` |  | Communicates with OData 2.0 and 3.0 services using Apache Olingo.
 
 | link:camel-olingo4/camel-olingo4-component/src/main/docs/olingo4-component.adoc[Olingo4] (camel-olingo4) +
 `olingo4:apiName/methodName` | 2.19 | Communicates with OData 4.0 services using Apache Olingo OData API.


[3/7] camel git commit: Fixed test after ActiveMQ upgrade

Posted by da...@apache.org.
Fixed test after ActiveMQ upgrade


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

Branch: refs/heads/master
Commit: 48b7188ec86cf57f6a3f73dbd98c8f78f6ba28d3
Parents: 0982eed
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:25:41 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:25:41 2017 +0200

----------------------------------------------------------------------
 .../test/java/org/apache/camel/catalog/CamelCatalogTest.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/48b7188e/platforms/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
----------------------------------------------------------------------
diff --git a/platforms/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java b/platforms/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
index 3b9952c..0a5d088 100644
--- a/platforms/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
+++ b/platforms/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
@@ -557,13 +557,13 @@ public class CamelCatalogTest {
         catalog.addComponent("activemq", "org.apache.activemq.camel.component.ActiveMQComponent");
 
         // activemq
-        EndpointValidationResult result = catalog.validateEndpointProperties("activemq:temp:queue:cheese?jmsMessageType=Bytes");
+        EndpointValidationResult result = catalog.validateEndpointProperties("activemq:temp-queue:cheese?jmsMessageType=Bytes");
         assertTrue(result.isSuccess());
-        result = catalog.validateEndpointProperties("activemq:temp:queue:cheese?jmsMessageType=Bytes");
+        result = catalog.validateEndpointProperties("activemq:temp-queue:cheese?jmsMessageType=Bytes");
         assertTrue(result.isSuccess());
-        result = catalog.validateEndpointProperties("activemq:temp:queue:cheese?jmsMessageType=Bytes", false, true, false);
+        result = catalog.validateEndpointProperties("activemq:temp-queue:cheese?jmsMessageType=Bytes", false, true, false);
         assertTrue(result.isSuccess());
-        result = catalog.validateEndpointProperties("activemq:temp:queue:cheese?jmsMessageType=Bytes", false, false, true);
+        result = catalog.validateEndpointProperties("activemq:temp-queue:cheese?jmsMessageType=Bytes", false, false, true);
         assertTrue(result.isSuccess());
     }
 


[2/7] camel git commit: CAMEL-11529: Fixed wrong syntax in couchbase component.

Posted by da...@apache.org.
CAMEL-11529: Fixed wrong syntax in couchbase component.


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

Branch: refs/heads/master
Commit: 0982eedcd3742b9934badb4c2c335e70032de2cd
Parents: 4784bbf
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:21:52 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:21:52 2017 +0200

----------------------------------------------------------------------
 .../camel-couchbase/src/main/docs/couchbase-component.adoc   | 8 ++++----
 .../apache/camel/component/couchbase/CouchbaseComponent.java | 2 --
 .../apache/camel/component/couchbase/CouchbaseEndpoint.java  | 5 +++--
 3 files changed, 7 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0982eedc/components/camel-couchbase/src/main/docs/couchbase-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-couchbase/src/main/docs/couchbase-component.adoc b/components/camel-couchbase/src/main/docs/couchbase-component.adoc
index 01d9825..7f3b4b0 100644
--- a/components/camel-couchbase/src/main/docs/couchbase-component.adoc
+++ b/components/camel-couchbase/src/main/docs/couchbase-component.adoc
@@ -35,27 +35,27 @@ The Couchbase component has no options.
 // endpoint options: START
 The Couchbase endpoint is configured using URI syntax:
 
-    couchbase:url
+    couchbase:protocol:hostname:port
 
 with the following path and query parameters:
 
-#### Path Parameters (2 parameters):
+#### Path Parameters (3 parameters):
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |=======================================================================
 | Name | Description | Default | Type
 | **protocol** | *Required* The protocol to use |  | String
 | **hostname** | *Required* The hostname to use |  | String
+| **port** | The port number to use | 8091 | int
 |=======================================================================
 
-#### Query Parameters (48 parameters):
+#### Query Parameters (47 parameters):
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |=======================================================================
 | Name | Description | Default | Type
 | **bucket** (common) | The bucket to use |  | String
 | **key** (common) | The key to use |  | String
-| **port** (common) | The port number to use | 8091 | int
 | **bridgeErrorHandler** (consumer) | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN or ERROR level and ignored. | false | boolean
 | **consumerProcessedStrategy** (consumer) | Define the consumer Processed strategy to use | none | String
 | **descending** (consumer) | Define if this operation is descending or not | false | boolean

http://git-wip-us.apache.org/repos/asf/camel/blob/0982eedc/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
----------------------------------------------------------------------
diff --git a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
index 74f02c1..a47c6f9 100644
--- a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
+++ b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseComponent.java
@@ -24,11 +24,9 @@ import org.apache.camel.impl.DefaultComponent;
 /**
  * Couchbase component.
  */
-
 public class CouchbaseComponent extends DefaultComponent {
 
     public CouchbaseComponent() {
-
     }
 
     public CouchbaseComponent(CamelContext context) {

http://git-wip-us.apache.org/repos/asf/camel/blob/0982eedc/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
index b03a208..563c405 100644
--- a/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
+++ b/components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
@@ -57,7 +57,7 @@ import static org.apache.camel.component.couchbase.CouchbaseConstants.DEFAULT_VI
  * Represents a Couchbase endpoint that can query Views with a Poll strategy
  * and/or produce various type of operations.
  */
-@UriEndpoint(firstVersion = "2.19.0", scheme = "couchbase", title = "Couchbase", syntax = "couchbase:url", consumerClass = CouchbaseConsumer.class, label = "database,nosql")
+@UriEndpoint(firstVersion = "2.19.0", scheme = "couchbase", title = "Couchbase", syntax = "couchbase:protocol:hostname:port", consumerClass = CouchbaseConsumer.class, label = "database,nosql")
 public class CouchbaseEndpoint extends ScheduledPollEndpoint {
 
     @UriPath
@@ -66,8 +66,9 @@ public class CouchbaseEndpoint extends ScheduledPollEndpoint {
     @UriPath
     @Metadata(required = "true")
     private String hostname;
-    @UriParam(defaultValue = "8091")
+    @UriPath(defaultValue = "8091")
     private int port;
+
     @UriParam
     private String bucket;
 


[7/7] camel git commit: Regen

Posted by da...@apache.org.
Regen


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

Branch: refs/heads/camel-2.19.x
Commit: 78851c0a1c812606f3cad5560f77b4abf8042b52
Parents: 9a136cd
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:26:11 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:26:46 2017 +0200

----------------------------------------------------------------------
 components/readme.adoc | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/78851c0a/components/readme.adoc
----------------------------------------------------------------------
diff --git a/components/readme.adoc b/components/readme.adoc
index b13f816..0495129 100644
--- a/components/readme.adoc
+++ b/components/readme.adoc
@@ -141,7 +141,7 @@ Number of Components: 238 in 185 JAR artifacts (14 deprecated)
 `controlbus:command:language` | 2.11 | The controlbus component provides easy management of Camel applications based on the Control Bus EIP pattern.
 
 | link:camel-couchbase/src/main/docs/couchbase-component.adoc[Couchbase] (camel-couchbase) +
-`couchbase:url` | 2.19 | Represents a Couchbase endpoint that can query Views with a Poll strategy and/or produce various type of operations.
+`couchbase:protocol:hostname:port` | 2.19 | Represents a Couchbase endpoint that can query Views with a Poll strategy and/or produce various type of operations.
 
 | link:camel-couchdb/src/main/docs/couchdb-component.adoc[CouchDB] (camel-couchdb) +
 `couchdb:protocol:hostname:port/database` | 2.11 | The couchdb component is used for integrate with CouchDB databases.
@@ -294,25 +294,25 @@ Number of Components: 238 in 185 JAR artifacts (14 deprecated)
 `ibatis:statement` | 1.2 | *deprecated* Performs a query poll insert update or delete in a relational database using Apache iBATIS.
 
 | link:camel-ignite/src/main/docs/ignite-cache-component.adoc[Ignite Cache] (camel-ignite) +
-`ignite-cache:[cacheName]` | 2.17 | The Ignite Cache endpoint is one of camel-ignite endpoints which allows you to interact with an Ignite Cache.
+`ignite-cache:cacheName` | 2.17 | The Ignite Cache endpoint is one of camel-ignite endpoints which allows you to interact with an Ignite Cache.
 
 | link:camel-ignite/src/main/docs/ignite-compute-component.adoc[Ignite Compute] (camel-ignite) +
-`ignite-compute:[endpointId]` | 2.17 | The Ignite Compute endpoint is one of camel-ignite endpoints which allows you to run compute operations on the cluster by passing in an IgniteCallable an IgniteRunnable an IgniteClosure or collections of them along with their parameters if necessary.
+`ignite-compute:endpointId` | 2.17 | The Ignite Compute endpoint is one of camel-ignite endpoints which allows you to run compute operations on the cluster by passing in an IgniteCallable an IgniteRunnable an IgniteClosure or collections of them along with their parameters if necessary.
 
 | link:camel-ignite/src/main/docs/ignite-events-component.adoc[Ignite Events] (camel-ignite) +
-`ignite-events:[endpointId]` | 2.17 | The Ignite Events endpoint is one of camel-ignite endpoints which allows you to receive events from the Ignite cluster by creating a local event listener.
+`ignite-events:endpointId` | 2.17 | The Ignite Events endpoint is one of camel-ignite endpoints which allows you to receive events from the Ignite cluster by creating a local event listener.
 
 | link:camel-ignite/src/main/docs/ignite-idgen-component.adoc[Ignite ID Generator] (camel-ignite) +
-`ignite-idgen:[name]` | 2.17 | The Ignite ID Generator endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Atomic Sequences and ID Generators.
+`ignite-idgen:name` | 2.17 | The Ignite ID Generator endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Atomic Sequences and ID Generators.
 
 | link:camel-ignite/src/main/docs/ignite-messaging-component.adoc[Ignite Messaging] (camel-ignite) +
-`ignite-messaging:[topic]` | 2.17 | The Ignite Messaging endpoint is one of camel-ignite endpoints which allows you to send and consume messages from an Ignite topic.
+`ignite-messaging:topic` | 2.17 | The Ignite Messaging endpoint is one of camel-ignite endpoints which allows you to send and consume messages from an Ignite topic.
 
 | link:camel-ignite/src/main/docs/ignite-queue-component.adoc[Ignite Queues] (camel-ignite) +
-`ignite-queue:[name]` | 2.17 | The Ignite Queue endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Queue data structures.
+`ignite-queue:name` | 2.17 | The Ignite Queue endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Queue data structures.
 
 | link:camel-ignite/src/main/docs/ignite-set-component.adoc[Ignite Sets] (camel-ignite) +
-`ignite-set:[name]` | 2.17 | The Ignite Sets endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Set data structures.
+`ignite-set:name` | 2.17 | The Ignite Sets endpoint is one of camel-ignite endpoints which allows you to interact with Ignite Set data structures.
 
 | link:camel-infinispan/src/main/docs/infinispan-component.adoc[Infinispan] (camel-infinispan) +
 `infinispan:cacheName` | 2.13 | For reading/writing from/to Infinispan distributed key/value store and data grid.
@@ -465,7 +465,7 @@ Number of Components: 238 in 185 JAR artifacts (14 deprecated)
 `netty4-http:protocol:host:port/path` | 2.14 | Netty HTTP server and client using the Netty 4.x library.
 
 | link:camel-olingo2/camel-olingo2-component/src/main/docs/olingo2-component.adoc[Olingo2] (camel-olingo2) +
-`olingo2:apiName/methodName` | 2.14 | Communicates with OData 2.0 services using Apache Olingo.
+`olingo2:apiName/methodName` |  | Communicates with OData 2.0 and 3.0 services using Apache Olingo.
 
 | link:camel-olingo4/camel-olingo4-component/src/main/docs/olingo4-component.adoc[Olingo4] (camel-olingo4) +
 `olingo4:apiName/methodName` | 2.19 | Communicates with OData 4.0 services using Apache Olingo OData API.


[5/7] camel git commit: CAMEL-11529: Fixed wrong syntax in ignite component.

Posted by da...@apache.org.
CAMEL-11529: Fixed wrong syntax in ignite component.


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

Branch: refs/heads/camel-2.19.x
Commit: 3ec32869a388d0c845912a16e88877b821b9622d
Parents: 6ae3b8f
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jul 10 22:18:48 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jul 10 22:26:31 2017 +0200

----------------------------------------------------------------------
 components/camel-ignite/src/main/docs/ignite-cache-component.adoc  | 2 +-
 .../camel-ignite/src/main/docs/ignite-compute-component.adoc       | 2 +-
 components/camel-ignite/src/main/docs/ignite-events-component.adoc | 2 +-
 components/camel-ignite/src/main/docs/ignite-idgen-component.adoc  | 2 +-
 .../camel-ignite/src/main/docs/ignite-messaging-component.adoc     | 2 +-
 components/camel-ignite/src/main/docs/ignite-queue-component.adoc  | 2 +-
 components/camel-ignite/src/main/docs/ignite-set-component.adoc    | 2 +-
 .../apache/camel/component/ignite/cache/IgniteCacheEndpoint.java   | 2 +-
 .../camel/component/ignite/compute/IgniteComputeEndpoint.java      | 2 +-
 .../apache/camel/component/ignite/events/IgniteEventsEndpoint.java | 2 +-
 .../apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java   | 2 +-
 .../camel/component/ignite/messaging/IgniteMessagingEndpoint.java  | 2 +-
 .../apache/camel/component/ignite/queue/IgniteQueueEndpoint.java   | 2 +-
 .../org/apache/camel/component/ignite/set/IgniteSetEndpoint.java   | 2 +-
 14 files changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-cache-component.adoc b/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
index 57ca5f4..500bd95 100644
--- a/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-cache-component.adoc
@@ -29,7 +29,7 @@ The Ignite Cache component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Cache endpoint is configured using URI syntax:
 
-    ignite-cache:[cacheName]
+    ignite-cache:cacheName
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-compute-component.adoc b/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
index e823737..7ddc600 100644
--- a/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-compute-component.adoc
@@ -30,7 +30,7 @@ The Ignite Compute component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Compute endpoint is configured using URI syntax:
 
-    ignite-compute:[endpointId]
+    ignite-compute:endpointId
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-events-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-events-component.adoc b/components/camel-ignite/src/main/docs/ignite-events-component.adoc
index ebd22d2..514ac88 100644
--- a/components/camel-ignite/src/main/docs/ignite-events-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-events-component.adoc
@@ -27,7 +27,7 @@ The Ignite Events component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Events endpoint is configured using URI syntax:
 
-    ignite-events:[endpointId]
+    ignite-events:endpointId
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc b/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
index 6ac0cb7..67d44d4 100644
--- a/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-idgen-component.adoc
@@ -26,7 +26,7 @@ The Ignite ID Generator component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite ID Generator endpoint is configured using URI syntax:
 
-    ignite-idgen:[name]
+    ignite-idgen:name
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc b/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
index c676166..21ed4c3 100644
--- a/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-messaging-component.adoc
@@ -26,7 +26,7 @@ The Ignite Messaging component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Messaging endpoint is configured using URI syntax:
 
-    ignite-messaging:[topic]
+    ignite-messaging:topic
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-queue-component.adoc b/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
index 85ab02c..6518f0b 100644
--- a/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-queue-component.adoc
@@ -26,7 +26,7 @@ The Ignite Queues component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Queues endpoint is configured using URI syntax:
 
-    ignite-queue:[name]
+    ignite-queue:name
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/docs/ignite-set-component.adoc
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/docs/ignite-set-component.adoc b/components/camel-ignite/src/main/docs/ignite-set-component.adoc
index 29c4ed2..6d2b7a6 100644
--- a/components/camel-ignite/src/main/docs/ignite-set-component.adoc
+++ b/components/camel-ignite/src/main/docs/ignite-set-component.adoc
@@ -26,7 +26,7 @@ The Ignite Sets component supports 4 options which are listed below.
 // endpoint options: START
 The Ignite Sets endpoint is configured using URI syntax:
 
-    ignite-set:[name]
+    ignite-set:name
 
 with the following path and query parameters:
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
index 4cd4a0b..c6451c2 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/cache/IgniteCacheEndpoint.java
@@ -44,7 +44,7 @@ import org.apache.ignite.cache.query.Query;
  * This offers both a Producer (to invoke cache operations on an Ignite cache) and
  * a Consumer (to consume changes from a continuous query).
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-cache", title = "Ignite Cache", syntax = "ignite-cache:[cacheName]", label = "nosql,cache,compute", 
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-cache", title = "Ignite Cache", syntax = "ignite-cache:cacheName", label = "nosql,cache,compute",
     consumerClass = IgniteCacheContinuousQueryConsumer.class)
 public class IgniteCacheEndpoint extends AbstractIgniteEndpoint {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
index bf49dd3..cac13d2 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/compute/IgniteComputeEndpoint.java
@@ -39,7 +39,7 @@ import org.apache.ignite.IgniteCompute;
  * or collections of them, along with their parameters if necessary.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-compute", title = "Ignite Compute", syntax = "ignite-compute:[endpointId]", label = "nosql,cache,compute", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-compute", title = "Ignite Compute", syntax = "ignite-compute:endpointId", label = "nosql,cache,compute", producerOnly = true)
 public class IgniteComputeEndpoint extends AbstractIgniteEndpoint {
 
     @UriPath @Metadata(required = "true")

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
index bd902ab..c7df13e 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/events/IgniteEventsEndpoint.java
@@ -46,7 +46,7 @@ import org.slf4j.LoggerFactory;
  * This endpoint only supports consumers.
  * The Exchanges created by this consumer put the received Event object into the body of the IN message.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-events", title = "Ignite Events", syntax = "ignite-events:[endpointId]", label = "nosql,cache,compute,messaging,data", 
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-events", title = "Ignite Events", syntax = "ignite-events:endpointId", label = "nosql,cache,compute,messaging,data",
     consumerOnly = true, consumerClass = IgniteEventsConsumer.class)
 public class IgniteEventsEndpoint extends AbstractIgniteEndpoint {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
index 34e1605..ca1971d 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/idgen/IgniteIdGenEndpoint.java
@@ -38,7 +38,7 @@ import org.slf4j.LoggerFactory;
  * <a href="https://apacheignite.readme.io/docs/id-generator">Ignite Atomic Sequences and ID Generators</a>.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-idgen", title = "Ignite ID Generator", syntax = "ignite-idgen:[name]", label = "nosql,cache,compute", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-idgen", title = "Ignite ID Generator", syntax = "ignite-idgen:name", label = "nosql,cache,compute", producerOnly = true)
 public class IgniteIdGenEndpoint extends AbstractIgniteEndpoint {
 
     private static final Logger LOG = LoggerFactory.getLogger(IgniteIdGenEndpoint.class);

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
index 97b522c..8b9df4b 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/messaging/IgniteMessagingEndpoint.java
@@ -37,7 +37,7 @@ import org.apache.ignite.IgniteMessaging;
  * consume messages from an <a href="https://apacheignite.readme.io/docs/messaging">Ignite topic</a>.
  * This endpoint supports producers (to send messages) and consumers (to receive messages).
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-messaging", title = "Ignite Messaging", syntax = "ignite-messaging:[topic]", label = "nosql,cache,messaging", 
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-messaging", title = "Ignite Messaging", syntax = "ignite-messaging:topic", label = "nosql,cache,messaging",
     consumerClass = IgniteMessagingConsumer.class)
 public class IgniteMessagingEndpoint extends AbstractIgniteEndpoint {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
index 1b87129..7df01bb 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/queue/IgniteQueueEndpoint.java
@@ -39,7 +39,7 @@ import org.apache.ignite.configuration.CollectionConfiguration;
  * <a href="https://apacheignite.readme.io/docs/queue-and-set">Ignite Queue data structures</a>.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-queue", title = "Ignite Queues", syntax = "ignite-queue:[name]", label = "nosql,cache", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-queue", title = "Ignite Queues", syntax = "ignite-queue:name", label = "nosql,cache", producerOnly = true)
 public class IgniteQueueEndpoint extends AbstractIgniteEndpoint {
 
     @UriPath @Metadata(required = "true")

http://git-wip-us.apache.org/repos/asf/camel/blob/3ec32869/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
index d441098..6b38e0c 100644
--- a/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
+++ b/components/camel-ignite/src/main/java/org/apache/camel/component/ignite/set/IgniteSetEndpoint.java
@@ -38,7 +38,7 @@ import org.apache.ignite.configuration.CollectionConfiguration;
  * <a href="https://apacheignite.readme.io/docs/queue-and-set">Ignite Set data structures</a>.
  * This endpoint only supports producers.
  */
-@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-set", title = "Ignite Sets", syntax = "ignite-set:[name]", label = "nosql,cache", producerOnly = true)
+@UriEndpoint(firstVersion = "2.17.0", scheme = "ignite-set", title = "Ignite Sets", syntax = "ignite-set:name", label = "nosql,cache", producerOnly = true)
 public class IgniteSetEndpoint extends AbstractIgniteEndpoint {
 
     @UriPath @Metadata(required = "true")