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

[camel] branch master updated (b127655 -> 2d862fd)

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

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


    from b127655  Camel-Catalog-Lucene: Removed deprecated and unused import
     new 5258d0d  Camel-Yammer: Fixed javadoc for newerThan
     new 66afb01  Camel-Yammer: Fixed javadoc for olderThan
     new 31f7ec6  Camel-Yammer: Fixed Javadoc for threaded
     new e25b7c0  Camel-Yammer: Regen
     new 2d862fd  Camel-Yammer: Regen docs

The 5 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:
 .../org/apache/camel/component/yammer/yammer.json  | 16 ++++-----
 .../src/main/docs/yammer-component.adoc            | 16 ++++-----
 .../component/yammer/YammerConfiguration.java      | 10 +++---
 .../dsl/YammerComponentBuilderFactory.java         | 26 +++++++-------
 .../endpoint/dsl/YammerEndpointBuilderFactory.java | 40 +++++++++++-----------
 .../modules/ROOT/pages/yammer-component.adoc       | 16 ++++-----
 6 files changed, 62 insertions(+), 62 deletions(-)


[camel] 05/05: Camel-Yammer: Regen docs

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

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

commit 2d862fdac70070fef38645f5d17cff62a5e6edef
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 4 10:59:20 2020 +0100

    Camel-Yammer: Regen docs
---
 docs/components/modules/ROOT/pages/yammer-component.adoc | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/components/modules/ROOT/pages/yammer-component.adoc b/docs/components/modules/ROOT/pages/yammer-component.adoc
index d8f0f7f..f94d889 100644
--- a/docs/components/modules/ROOT/pages/yammer-component.adoc
+++ b/docs/components/modules/ROOT/pages/yammer-component.adoc
@@ -54,10 +54,10 @@ The Yammer component supports 15 options, which are listed below.
 | *useJson* (common) | Set to true if you want to use raw JSON rather than converting to POJOs. | false | boolean
 | *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
 | *delay* (consumer) | Delay between polling in millis | 5000 | long
-| *limit* (consumer) | Return only the specified number of messages. Works for threaded=true and threaded=extended. | -1 | int
-| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan=3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
-| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan=2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
-| *threaded* (consumer) | threaded=true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded=extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
+| *limit* (consumer) | Return only the specified number of messages. Works for threaded set to true and threaded set to extended. | -1 | int
+| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan equals to 3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
+| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan equals to 2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
+| *threaded* (consumer) | threaded equals to true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded equals to extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
 | *userId* (consumer) | The user id |  | String
 | *lazyStartProducer* (producer) | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and [...]
 | *basicPropertyBinding* (advanced) | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | boolean
@@ -106,11 +106,11 @@ with the following path and query parameters:
 | *useJson* (common) | Set to true if you want to use raw JSON rather than converting to POJOs. | false | boolean
 | *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
 | *delay* (consumer) | Delay between polling in millis | 5000 | long
-| *limit* (consumer) | Return only the specified number of messages. Works for threaded=true and threaded=extended. | -1 | int
-| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan=3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
-| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan=2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
+| *limit* (consumer) | Return only the specified number of messages. Works for threaded set to true and threaded set to extended. | -1 | int
+| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan equals to 3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
+| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan equals to 2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
 | *sendEmptyMessageWhenIdle* (consumer) | If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead. | false | boolean
-| *threaded* (consumer) | threaded=true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded=extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
+| *threaded* (consumer) | threaded equals to true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded equals to extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
 | *userId* (consumer) | The user id |  | String
 | *exceptionHandler* (consumer) | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. |  | ExceptionHandler
 | *exchangePattern* (consumer) | Sets the exchange pattern when the consumer creates an exchange. The value can be one of: InOnly, InOut, InOptionalOut |  | ExchangePattern


[camel] 01/05: Camel-Yammer: Fixed javadoc for newerThan

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

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

commit 5258d0d70eab2402f43ba4ad5b4406b317f75c51
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 4 10:55:23 2020 +0100

    Camel-Yammer: Fixed javadoc for newerThan
---
 .../java/org/apache/camel/component/yammer/YammerConfiguration.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
index 1dad4f9..dd0c9fc 100644
--- a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
+++ b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
@@ -158,7 +158,7 @@ public class YammerConfiguration implements Cloneable {
 
     /**
      * Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages.
-     * If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan=3516
+     * If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan equals to 3516
      * to ensure that you do not get duplicate copies of messages already on your page.
      */
     public void setNewerThan(long newerThan) {


[camel] 03/05: Camel-Yammer: Fixed Javadoc for threaded

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

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

commit 31f7ec67806d802abc255dfc20c6463b7514eae7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 4 10:57:35 2020 +0100

    Camel-Yammer: Fixed Javadoc for threaded
---
 .../java/org/apache/camel/component/yammer/YammerConfiguration.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
index 4095add..a7c482f 100644
--- a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
+++ b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
@@ -133,7 +133,7 @@ public class YammerConfiguration implements Cloneable {
     }
 
     /**
-     * Return only the specified number of messages. Works for threaded=true and threaded=extended.
+     * Return only the specified number of messages. Works for threaded set to true and threaded set to extended.
      */
     public void setLimit(int limit) {
         this.limit = limit;
@@ -170,9 +170,9 @@ public class YammerConfiguration implements Cloneable {
     }
 
     /**
-     * threaded=true will only return the first message in each thread.
+     * threaded equals to true will only return the first message in each thread.
      * This parameter is intended for apps which display message threads collapsed.
-     * threaded=extended will return the thread starter messages in order of most recently active as well as the
+     * threaded equals to extended will return the thread starter messages in order of most recently active as well as the
      * two most recent messages, as they are viewed in the default view on the Yammer web interface.
      */
     public void setThreaded(String threaded) {


[camel] 02/05: Camel-Yammer: Fixed javadoc for olderThan

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

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

commit 66afb01f51647fa78b8a9531de9c9336d03f171a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 4 10:56:31 2020 +0100

    Camel-Yammer: Fixed javadoc for olderThan
---
 .../java/org/apache/camel/component/yammer/YammerConfiguration.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
index dd0c9fc..4095add 100644
--- a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
+++ b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
@@ -146,7 +146,7 @@ public class YammerConfiguration implements Cloneable {
     /**
      * Returns messages older than the message ID specified as a numeric string.
      * This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912,
-     * you could append olderThan=2912 to your request to get the 20 messages prior to those you're seeing.
+     * you could append olderThan equals to 2912 to your request to get the 20 messages prior to those you're seeing.
      */
     public void setOlderThan(long olderThan) {
         this.olderThan = olderThan;


[camel] 04/05: Camel-Yammer: Regen

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

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

commit e25b7c055e0fc7f9af0c6568100757d29e8be01a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 4 10:58:24 2020 +0100

    Camel-Yammer: Regen
---
 .../org/apache/camel/component/yammer/yammer.json  | 16 ++++-----
 .../src/main/docs/yammer-component.adoc            | 16 ++++-----
 .../dsl/YammerComponentBuilderFactory.java         | 26 +++++++-------
 .../endpoint/dsl/YammerEndpointBuilderFactory.java | 40 +++++++++++-----------
 4 files changed, 49 insertions(+), 49 deletions(-)

diff --git a/components/camel-yammer/src/generated/resources/org/apache/camel/component/yammer/yammer.json b/components/camel-yammer/src/generated/resources/org/apache/camel/component/yammer/yammer.json
index f8610a0..4840826 100644
--- a/components/camel-yammer/src/generated/resources/org/apache/camel/component/yammer/yammer.json
+++ b/components/camel-yammer/src/generated/resources/org/apache/camel/component/yammer/yammer.json
@@ -22,10 +22,10 @@
     "useJson": { "kind": "property", "displayName": "Use Json", "group": "common", "label": "", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Set to true if you want to use raw JSON rather than converting to POJOs." },
     "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error Handler", "group": "consumer", "label": "consumer", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "description": "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 [...]
     "delay": { "kind": "property", "displayName": "Delay", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "5000", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Delay between polling in millis" },
-    "limit": { "kind": "property", "displayName": "Limit", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "int", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Return only the specified number of messages. Works for threaded=true and threaded=extended." },
-    "newerThan": { "kind": "property", "displayName": "Newer Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If yo [...]
-    "olderThan": { "kind": "property", "displayName": "Older Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if  [...]
-    "threaded": { "kind": "property", "displayName": "Threaded", "group": "consumer", "label": "consumer", "required": false, "type": "string", "javaType": "java.lang.String", "enum": [ "true", "extended" ], "deprecated": false, "secret": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "threaded=true will only return the first message in each thread. This parameter is intended for apps which displ [...]
+    "limit": { "kind": "property", "displayName": "Limit", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "int", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Return only the specified number of messages. Works for threaded set to true and threaded set to extended." },
+    "newerThan": { "kind": "property", "displayName": "Newer Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If yo [...]
+    "olderThan": { "kind": "property", "displayName": "Older Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if  [...]
+    "threaded": { "kind": "property", "displayName": "Threaded", "group": "consumer", "label": "consumer", "required": false, "type": "string", "javaType": "java.lang.String", "enum": [ "true", "extended" ], "deprecated": false, "secret": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "threaded equals to true will only return the first message in each thread. This parameter is intended for apps w [...]
     "userId": { "kind": "property", "displayName": "User Id", "group": "consumer", "label": "consumer", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "configuration", "description": "The user id" },
     "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start Producer", "group": "producer", "label": "producer", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the r [...]
     "basicPropertyBinding": { "kind": "property", "displayName": "Basic Property Binding", "group": "advanced", "label": "advanced", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "description": "Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities" },
@@ -40,11 +40,11 @@
     "useJson": { "kind": "parameter", "displayName": "Use Json", "group": "common", "label": "", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Set to true if you want to use raw JSON rather than converting to POJOs." },
     "bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error Handler", "group": "consumer", "label": "consumer", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "description": "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 b [...]
     "delay": { "kind": "parameter", "displayName": "Delay", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "5000", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Delay between polling in millis" },
-    "limit": { "kind": "parameter", "displayName": "Limit", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "int", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Return only the specified number of messages. Works for threaded=true and threaded=extended." },
-    "newerThan": { "kind": "parameter", "displayName": "Newer Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're l [...]
-    "olderThan": { "kind": "parameter", "displayName": "Older Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're [...]
+    "limit": { "kind": "parameter", "displayName": "Limit", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "int", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Return only the specified number of messages. Works for threaded set to true and threaded set to extended." },
+    "newerThan": { "kind": "parameter", "displayName": "Newer Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're l [...]
+    "olderThan": { "kind": "parameter", "displayName": "Older Than", "group": "consumer", "label": "consumer", "required": false, "type": "integer", "javaType": "long", "deprecated": false, "secret": false, "defaultValue": "-1", "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're [...]
     "sendEmptyMessageWhenIdle": { "kind": "parameter", "displayName": "Send Empty Message When Idle", "group": "consumer", "label": "consumer", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": false, "description": "If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead." },
-    "threaded": { "kind": "parameter", "displayName": "Threaded", "group": "consumer", "label": "consumer", "required": false, "type": "string", "javaType": "java.lang.String", "enum": [ "true", "extended" ], "deprecated": false, "secret": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "threaded=true will only return the first message in each thread. This parameter is intended for apps which display mes [...]
+    "threaded": { "kind": "parameter", "displayName": "Threaded", "group": "consumer", "label": "consumer", "required": false, "type": "string", "javaType": "java.lang.String", "enum": [ "true", "extended" ], "deprecated": false, "secret": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "threaded equals to true will only return the first message in each thread. This parameter is intended for apps which d [...]
     "userId": { "kind": "parameter", "displayName": "User Id", "group": "consumer", "label": "consumer", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "secret": false, "configurationClass": "org.apache.camel.component.yammer.YammerConfiguration", "configurationField": "config", "description": "The user id" },
     "exceptionHandler": { "kind": "parameter", "displayName": "Exception Handler", "group": "consumer (advanced)", "label": "consumer,advanced", "required": false, "type": "object", "javaType": "org.apache.camel.spi.ExceptionHandler", "optionalPrefix": "consumer.", "deprecated": false, "secret": false, "description": "To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with [...]
     "exchangePattern": { "kind": "parameter", "displayName": "Exchange Pattern", "group": "consumer (advanced)", "label": "consumer,advanced", "required": false, "type": "object", "javaType": "org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut", "InOptionalOut" ], "deprecated": false, "secret": false, "description": "Sets the exchange pattern when the consumer creates an exchange." },
diff --git a/components/camel-yammer/src/main/docs/yammer-component.adoc b/components/camel-yammer/src/main/docs/yammer-component.adoc
index 8581714..cd6e852 100644
--- a/components/camel-yammer/src/main/docs/yammer-component.adoc
+++ b/components/camel-yammer/src/main/docs/yammer-component.adoc
@@ -53,10 +53,10 @@ The Yammer component supports 15 options, which are listed below.
 | *useJson* (common) | Set to true if you want to use raw JSON rather than converting to POJOs. | false | boolean
 | *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
 | *delay* (consumer) | Delay between polling in millis | 5000 | long
-| *limit* (consumer) | Return only the specified number of messages. Works for threaded=true and threaded=extended. | -1 | int
-| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan=3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
-| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan=2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
-| *threaded* (consumer) | threaded=true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded=extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
+| *limit* (consumer) | Return only the specified number of messages. Works for threaded set to true and threaded set to extended. | -1 | int
+| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan equals to 3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
+| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan equals to 2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
+| *threaded* (consumer) | threaded equals to true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded equals to extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
 | *userId* (consumer) | The user id |  | String
 | *lazyStartProducer* (producer) | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and [...]
 | *basicPropertyBinding* (advanced) | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | boolean
@@ -105,11 +105,11 @@ with the following path and query parameters:
 | *useJson* (common) | Set to true if you want to use raw JSON rather than converting to POJOs. | false | boolean
 | *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
 | *delay* (consumer) | Delay between polling in millis | 5000 | long
-| *limit* (consumer) | Return only the specified number of messages. Works for threaded=true and threaded=extended. | -1 | int
-| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan=3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
-| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan=2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
+| *limit* (consumer) | Return only the specified number of messages. Works for threaded set to true and threaded set to extended. | -1 | int
+| *newerThan* (consumer) | Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages. If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan equals to 3516 to ensure that you do not get duplicate copies of messages already on your page. | -1 | long
+| *olderThan* (consumer) | Returns messages older than the message ID specified as a numeric string. This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912, you could append olderThan equals to 2912 to your request to get the 20 messages prior to those you're seeing. | -1 | long
 | *sendEmptyMessageWhenIdle* (consumer) | If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead. | false | boolean
-| *threaded* (consumer) | threaded=true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded=extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
+| *threaded* (consumer) | threaded equals to true will only return the first message in each thread. This parameter is intended for apps which display message threads collapsed. threaded equals to extended will return the thread starter messages in order of most recently active as well as the two most recent messages, as they are viewed in the default view on the Yammer web interface. The value can be one of: true, extended |  | String
 | *userId* (consumer) | The user id |  | String
 | *exceptionHandler* (consumer) | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. |  | ExceptionHandler
 | *exchangePattern* (consumer) | Sets the exchange pattern when the consumer creates an exchange. The value can be one of: InOnly, InOut, InOptionalOut |  | ExchangePattern
diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/YammerComponentBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/YammerComponentBuilderFactory.java
index 18dcd43..cfce554 100644
--- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/YammerComponentBuilderFactory.java
+++ b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/YammerComponentBuilderFactory.java
@@ -95,8 +95,8 @@ public interface YammerComponentBuilderFactory {
             return this;
         }
         /**
-         * Return only the specified number of messages. Works for threaded=true
-         * and threaded=extended.
+         * Return only the specified number of messages. Works for threaded set
+         * to true and threaded set to extended.
          * 
          * The option is a: <code>int</code> type.
          * 
@@ -111,9 +111,9 @@ public interface YammerComponentBuilderFactory {
          * Returns messages newer than the message ID specified as a numeric
          * string. This should be used when polling for new messages. If you're
          * looking at messages, and the most recent message returned is 3516,
-         * you can make a request with the parameter newerThan=3516 to ensure
-         * that you do not get duplicate copies of messages already on your
-         * page.
+         * you can make a request with the parameter newerThan equals to 3516 to
+         * ensure that you do not get duplicate copies of messages already on
+         * your page.
          * 
          * The option is a: <code>long</code> type.
          * 
@@ -128,8 +128,8 @@ public interface YammerComponentBuilderFactory {
          * Returns messages older than the message ID specified as a numeric
          * string. This is useful for paginating messages. For example, if
          * you're currently viewing 20 messages and the oldest is number 2912,
-         * you could append olderThan=2912 to your request to get the 20
-         * messages prior to those you're seeing.
+         * you could append olderThan equals to 2912 to your request to get the
+         * 20 messages prior to those you're seeing.
          * 
          * The option is a: <code>long</code> type.
          * 
@@ -141,12 +141,12 @@ public interface YammerComponentBuilderFactory {
             return this;
         }
         /**
-         * threaded=true will only return the first message in each thread. This
-         * parameter is intended for apps which display message threads
-         * collapsed. threaded=extended will return the thread starter messages
-         * in order of most recently active as well as the two most recent
-         * messages, as they are viewed in the default view on the Yammer web
-         * interface.
+         * threaded equals to true will only return the first message in each
+         * thread. This parameter is intended for apps which display message
+         * threads collapsed. threaded equals to extended will return the thread
+         * starter messages in order of most recently active as well as the two
+         * most recent messages, as they are viewed in the default view on the
+         * Yammer web interface.
          * 
          * The option is a: <code>java.lang.String</code> type.
          * 
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/YammerEndpointBuilderFactory.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/YammerEndpointBuilderFactory.java
index 682b7e8..6e2b361 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/YammerEndpointBuilderFactory.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/YammerEndpointBuilderFactory.java
@@ -136,8 +136,8 @@ public interface YammerEndpointBuilderFactory {
             return this;
         }
         /**
-         * Return only the specified number of messages. Works for threaded=true
-         * and threaded=extended.
+         * Return only the specified number of messages. Works for threaded set
+         * to true and threaded set to extended.
          * 
          * The option is a: <code>int</code> type.
          * 
@@ -149,8 +149,8 @@ public interface YammerEndpointBuilderFactory {
             return this;
         }
         /**
-         * Return only the specified number of messages. Works for threaded=true
-         * and threaded=extended.
+         * Return only the specified number of messages. Works for threaded set
+         * to true and threaded set to extended.
          * 
          * The option will be converted to a <code>int</code> type.
          * 
@@ -165,9 +165,9 @@ public interface YammerEndpointBuilderFactory {
          * Returns messages newer than the message ID specified as a numeric
          * string. This should be used when polling for new messages. If you're
          * looking at messages, and the most recent message returned is 3516,
-         * you can make a request with the parameter newerThan=3516 to ensure
-         * that you do not get duplicate copies of messages already on your
-         * page.
+         * you can make a request with the parameter newerThan equals to 3516 to
+         * ensure that you do not get duplicate copies of messages already on
+         * your page.
          * 
          * The option is a: <code>long</code> type.
          * 
@@ -182,9 +182,9 @@ public interface YammerEndpointBuilderFactory {
          * Returns messages newer than the message ID specified as a numeric
          * string. This should be used when polling for new messages. If you're
          * looking at messages, and the most recent message returned is 3516,
-         * you can make a request with the parameter newerThan=3516 to ensure
-         * that you do not get duplicate copies of messages already on your
-         * page.
+         * you can make a request with the parameter newerThan equals to 3516 to
+         * ensure that you do not get duplicate copies of messages already on
+         * your page.
          * 
          * The option will be converted to a <code>long</code> type.
          * 
@@ -199,8 +199,8 @@ public interface YammerEndpointBuilderFactory {
          * Returns messages older than the message ID specified as a numeric
          * string. This is useful for paginating messages. For example, if
          * you're currently viewing 20 messages and the oldest is number 2912,
-         * you could append olderThan=2912 to your request to get the 20
-         * messages prior to those you're seeing.
+         * you could append olderThan equals to 2912 to your request to get the
+         * 20 messages prior to those you're seeing.
          * 
          * The option is a: <code>long</code> type.
          * 
@@ -215,8 +215,8 @@ public interface YammerEndpointBuilderFactory {
          * Returns messages older than the message ID specified as a numeric
          * string. This is useful for paginating messages. For example, if
          * you're currently viewing 20 messages and the oldest is number 2912,
-         * you could append olderThan=2912 to your request to get the 20
-         * messages prior to those you're seeing.
+         * you could append olderThan equals to 2912 to your request to get the
+         * 20 messages prior to those you're seeing.
          * 
          * The option will be converted to a <code>long</code> type.
          * 
@@ -256,12 +256,12 @@ public interface YammerEndpointBuilderFactory {
             return this;
         }
         /**
-         * threaded=true will only return the first message in each thread. This
-         * parameter is intended for apps which display message threads
-         * collapsed. threaded=extended will return the thread starter messages
-         * in order of most recently active as well as the two most recent
-         * messages, as they are viewed in the default view on the Yammer web
-         * interface.
+         * threaded equals to true will only return the first message in each
+         * thread. This parameter is intended for apps which display message
+         * threads collapsed. threaded equals to extended will return the thread
+         * starter messages in order of most recently active as well as the two
+         * most recent messages, as they are viewed in the default view on the
+         * Yammer web interface.
          * 
          * The option is a: <code>java.lang.String</code> type.
          *