Repository: camel Updated Branches: refs/heads/master 70ec4ac4f -> 844f309a1
Component docs - Adjust tables as the previous attempt did not look so good. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/844f309a Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/844f309a Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/844f309a Branch: refs/heads/master Commit: 844f309a14fdc68cbbba743a7aaaf8845c6fdc18 Parents: 70ec4ac Author: Claus Ibsen <davscl...@apache.org> Authored: Fri Mar 17 13:59:58 2017 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Fri Mar 17 13:59:58 2017 +0100 ---------------------------------------------------------------------- .../camel-jms/src/main/docs/jms-component.adoc | 34 ++++++++++---------- .../src/main/resources/component-options.mvel | 2 +- .../src/main/resources/endpoint-options.mvel | 4 +-- 3 files changed, 20 insertions(+), 20 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/844f309a/components/camel-jms/src/main/docs/jms-component.adoc ---------------------------------------------------------------------- diff --git a/components/camel-jms/src/main/docs/jms-component.adoc b/components/camel-jms/src/main/docs/jms-component.adoc index d15d6ff..a0d50b2 100644 --- a/components/camel-jms/src/main/docs/jms-component.adoc +++ b/components/camel-jms/src/main/docs/jms-component.adoc @@ -234,15 +234,15 @@ The JMS component supports 75 options which are listed below. | **idleTaskExecutionLimit** (advanced) | 1 | Specifies the limit for idle executions of a receive task not having received any message within its execution. If this limit is reached the task will shut down and leave receiving to other executing tasks (in the case of dynamic scheduling; see the maxConcurrentConsumers setting). There is additional doc available from Spring. | int | **idleConsumerLimit** (advanced) | 1 | Specify the limit for the number of consumers that are allowed to be idle at any given time. | int | **maxConcurrentConsumers** (consumer) | | Specifies the maximum number of concurrent consumers when consuming from JMS (not for request/reply over JMS). See also the maxMessagesPerTask option to control dynamic scaling up/down of threads. When doing request/reply over JMS then the option replyToMaxConcurrentConsumers is used to control number of concurrent consumers on the reply message listener. | int -| **replyToMaxConcurrentConsumers** (producer) | | Specifies the maximum number of concurrent consumers when using request/reply over JMS. See also the maxMessagesPerTask option to control dynamic scaling up/down of threads. | int -| **replyOnTimeoutToMaxConcurrent Consumers** (producer) | 1 | Specifies the maximum number of concurrent consumers for continue routing when timeout occurred when using request/reply over JMS. | int +| **replyToMaxConcurrent Consumers** (producer) | | Specifies the maximum number of concurrent consumers when using request/reply over JMS. See also the maxMessagesPerTask option to control dynamic scaling up/down of threads. | int +| **replyOnTimeoutToMax ConcurrentConsumers** (producer) | 1 | Specifies the maximum number of concurrent consumers for continue routing when timeout occurred when using request/reply over JMS. | int | **maxMessagesPerTask** (advanced) | -1 | The number of messages per task. -1 is unlimited. If you use a range for concurrent consumers (eg min max) then this option can be used to set a value to eg 100 to control how fast the consumers will shrink when less work is required. | int | **messageConverter** (advanced) | | To use a custom Spring org.springframework.jms.support.converter.MessageConverter so you can be in control how to map to/from a javax.jms.Message. | MessageConverter | **mapJmsMessage** (advanced) | true | Specifies whether Camel should auto map the received JMS message to a suited payload type such as javax.jms.TextMessage to a String etc. See section about how mapping works below for more details. | boolean | **messageIdEnabled** (advanced) | true | When sending specifies whether message IDs should be added. This is just an hint to the JMS Broker. If the JMS provider accepts this hint these messages must have the message ID set to null; if the provider ignores the hint the message ID must be set to its normal unique value | boolean | **messageTimestampEnabled** (advanced) | true | Specifies whether timestamps should be enabled by default on sending messages. | boolean | **alwaysCopyMessage** (producer) | false | If true Camel will always make a JMS message copy of the message when it is passed to the producer for sending. Copying the message is needed in some situations such as when a replyToDestinationSelectorName is set (incidentally Camel will set the alwaysCopyMessage option to true if a replyToDestinationSelectorName is set) | boolean -| **useMessageIDAsCorrelationID** (advanced) | false | Specifies whether JMSMessageID should always be used as JMSCorrelationID for InOut messages. | boolean +| **useMessageIDAsCorrelation ID** (advanced) | false | Specifies whether JMSMessageID should always be used as JMSCorrelationID for InOut messages. | boolean | **priority** (producer) | 4 | Values greater than 1 specify the message priority when sending (where 0 is the lowest priority and 9 is the highest). The explicitQosEnabled option must also be enabled in order for this option to have any effect. | int | **pubSubNoLocal** (advanced) | false | Specifies whether to inhibit the delivery of messages published by its own connection. | boolean | **receiveTimeout** (advanced) | 1000 | The timeout for receiving messages (in milliseconds). | long @@ -251,7 +251,7 @@ The JMS component supports 75 options which are listed below. | **taskExecutor** (consumer) | | Allows you to specify a custom task executor for consuming messages. | TaskExecutor | **timeToLive** (producer) | -1 | When sending messages specifies the time-to-live of the message (in milliseconds). | long | **transacted** (transaction) | false | Specifies whether to use transacted mode | boolean -| **lazyCreateTransactionManager** (transaction) | true | If true Camel will create a JmsTransactionManager if there is no transactionManager injected when option transacted=true. | boolean +| **lazyCreateTransaction Manager** (transaction) | true | If true Camel will create a JmsTransactionManager if there is no transactionManager injected when option transacted=true. | boolean | **transactionManager** (transaction) | | The Spring transaction manager to use. | PlatformTransaction Manager | **transactionName** (transaction) | | The name of the transaction to use. | String | **transactionTimeout** (transaction) | -1 | The timeout value of the transaction (in seconds) if using transacted mode. | int @@ -260,7 +260,7 @@ The JMS component supports 75 options which are listed below. | **asyncStopListener** (advanced) | false | Whether to stop the JmsConsumer message listener asynchronously when stopping a route. | boolean | **forceSendOriginalMessage** (producer) | false | When using mapJmsMessage=false Camel will create a new JMS message to send to a new JMS destination if you touch the headers (get or set) during the route. Set this option to true to force Camel to send the original JMS message that was received. | boolean | **requestTimeout** (producer) | 20000 | The timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds). The default is 20 seconds. You can include the header CamelJmsRequestTimeout to override this endpoint configured timeout value and thus have per message individual timeout values. See also the requestTimeoutCheckerInterval option. | long -| **requestTimeoutCheckerInterval** (advanced) | 1000 | Configures how often Camel should check for timed out Exchanges when doing request/reply over JMS. By default Camel checks once per second. But if you must react faster when a timeout occurs then you can lower this interval to check more frequently. The timeout is determined by the option requestTimeout. | long +| **requestTimeoutChecker Interval** (advanced) | 1000 | Configures how often Camel should check for timed out Exchanges when doing request/reply over JMS. By default Camel checks once per second. But if you must react faster when a timeout occurs then you can lower this interval to check more frequently. The timeout is determined by the option requestTimeout. | long | **transferExchange** (advanced) | false | You can transfer the exchange over the wire instead of just the body and headers. The following fields are transferred: In body Out body Fault body In headers Out headers Fault headers exchange properties exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level. You must enable this option on both the producer and consumer side so Camel knows the payloads is an Exchange and not a regular payload. | boolean | **transferException** (advanced) | false | If enabled and you are using Request Reply messaging (InOut) and an Exchange failed on the consumer side then the caused Exception will be send back in response as a javax.jms.ObjectMessage. If the client is Camel the returned Exception is rethrown. This allows you to use Camel JMS as a bridge in your routing - for example using persistent queues to enable robust routing. Notice that if you also have transferExchange enabled this option takes precedence. The caught exception is required to be serializable. The original Exception on the consumer side can be wrapped in an outer exception such as org.apache.camel.RuntimeCamelException when returned to the producer. | boolean | **transferFault** (advanced) | false | If enabled and you are using Request Reply messaging (InOut) and an Exchange failed with a SOAP fault (not exception) on the consumer side then the fault flag on link org.apache.camel.MessageisFault() will be send back in the response as a JMS header with the key link JmsConstantsJMS_TRANSFER_FAULT. If the client is Camel the returned fault flag will be set on the link org.apache.camel.MessagesetFault(boolean). You may want to enable this when using Camel components that support faults such as SOAP based such as cxf or spring-ws. | boolean @@ -276,8 +276,8 @@ The JMS component supports 75 options which are listed below. | **jmsKeyFormatStrategy** (advanced) | | Pluggable strategy for encoding and decoding JMS keys so they can be compliant with the JMS specification. Camel provides two implementations out of the box: default and passthrough. The default strategy will safely marshal dots and hyphens (. and -). The passthrough strategy leaves the key as is. Can be used for JMS brokers which do not care whether JMS header keys contain illegal characters. You can provide your own implementation of the org.apache.camel.component.jms.JmsKeyFormatStrategy and refer to it using the notation. | JmsKeyFormatStrategy | **queueBrowseStrategy** (advanced) | | To use a custom QueueBrowseStrategy when browsing queues | QueueBrowseStrategy | **messageCreatedStrategy** (advanced) | | To use the given MessageCreatedStrategy which are invoked when Camel creates new instances of javax.jms.Message objects when Camel is sending a JMS message. | MessageCreatedStrategy -| **waitForProvisionCorrelationTo BeUpdatedCounter** (advanced) | 50 | Number of times to wait for provisional correlation id to be updated to the actual correlation id when doing request/reply over JMS and when the option useMessageIDAsCorrelationID is enabled. | int -| **waitForProvisionCorrelationTo BeUpdatedThreadSleepingTime** (advanced) | 100 | Interval in millis to sleep each time while waiting for provisional correlation id to be updated. | long +| **waitForProvisionCorrelation ToBeUpdatedCounter** (advanced) | 50 | Number of times to wait for provisional correlation id to be updated to the actual correlation id when doing request/reply over JMS and when the option useMessageIDAsCorrelationID is enabled. | int +| **waitForProvisionCorrelation ToBeUpdatedThreadSleeping Time** (advanced) | 100 | Interval in millis to sleep each time while waiting for provisional correlation id to be updated. | long | **correlationProperty** (producer) | | Use this JMS property to correlate messages in InOut exchange pattern (request-reply) instead of JMSCorrelationID property. This allows you to exchange messages with systems that do not correlate messages using JMSCorrelationID JMS property. If used JMSCorrelationID will not be used or set by Camel. The value of here named property will be generated if not supplied in the header of the message under the same name. | String | **headerFilterStrategy** (filter) | | To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message. | HeaderFilterStrategy | **resolvePropertyPlaceholders** (advanced) | true | Whether the component should resolve property placeholders on itself when starting. Only properties which are of String type can use property placeholders. | boolean @@ -347,7 +347,7 @@ with the following path and query parameters: | **exceptionHandler** (consumer) | | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options 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. | ExchangePattern | **exposeListenerSession** (consumer) | false | Specifies whether the listener session should be exposed when consuming messages. | boolean -| **replyToSameDestinationAllowed** (consumer) | false | Whether a JMS consumer is allowed to send a reply message to the same destination that the consumer is using to consume from. This prevents an endless loop by consuming and sending back the same message to itself. | boolean +| **replyToSameDestination Allowed** (consumer) | false | Whether a JMS consumer is allowed to send a reply message to the same destination that the consumer is using to consume from. This prevents an endless loop by consuming and sending back the same message to itself. | boolean | **taskExecutor** (consumer) | | Allows you to specify a custom task executor for consuming messages. | TaskExecutor | **deliveryMode** (producer) | | Specifies the delivery mode to be used. Possibles values are those defined by javax.jms.DeliveryMode. NON_PERSISTENT = 1 and PERSISTENT = 2. | Integer | **deliveryPersistent** (producer) | true | Specifies whether persistent delivery is used by default. | boolean @@ -355,8 +355,8 @@ with the following path and query parameters: | **preserveMessageQos** (producer) | false | Set to true if you want to send message using the QoS settings specified on the message instead of the QoS settings on the JMS endpoint. The following three headers are considered JMSPriority JMSDeliveryMode and JMSExpiration. You can provide all or only some of them. If not provided Camel will fall back to use the values from the endpoint instead. So when using this option the headers override the values from the endpoint. The explicitQosEnabled option by contrast will only use options set on the endpoint and not values from the message header. | boolean | **priority** (producer) | 4 | Values greater than 1 specify the message priority when sending (where 0 is the lowest priority and 9 is the highest). The explicitQosEnabled option must also be enabled in order for this option to have any effect. | int | **replyToConcurrentConsumers** (producer) | 1 | Specifies the default number of concurrent consumers when doing request/reply over JMS. See also the maxMessagesPerTask option to control dynamic scaling up/down of threads. | int -| **replyToMaxConcurrentConsumers** (producer) | | Specifies the maximum number of concurrent consumers when using request/reply over JMS. See also the maxMessagesPerTask option to control dynamic scaling up/down of threads. | int -| **replyToOnTimeoutMaxConcurrent Consumers** (producer) | 1 | Specifies the maximum number of concurrent consumers for continue routing when timeout occurred when using request/reply over JMS. | int +| **replyToMaxConcurrent Consumers** (producer) | | Specifies the maximum number of concurrent consumers when using request/reply over JMS. See also the maxMessagesPerTask option to control dynamic scaling up/down of threads. | int +| **replyToOnTimeoutMax ConcurrentConsumers** (producer) | 1 | Specifies the maximum number of concurrent consumers for continue routing when timeout occurred when using request/reply over JMS. | int | **replyToOverride** (producer) | | Provides an explicit ReplyTo destination in the JMS message which overrides the setting of replyTo. It is useful if you want to forward the message to a remote Queue and receive the reply message from the ReplyTo destination. | String | **replyToType** (producer) | | Allows for explicitly specifying which kind of strategy to use for replyTo queues when doing request/reply over JMS. Possible values are: Temporary Shared or Exclusive. By default Camel will use temporary queues. However if replyTo has been configured then Shared is used by default. This option allows you to use exclusive queues instead of shared ones. See Camel JMS documentation for more details and especially the notes about the implications if running in a clustered environment and the fact that Shared reply queues has lower performance than its alternatives Temporary and Exclusive. | ReplyToType | **requestTimeout** (producer) | 20000 | The timeout for waiting for a reply when using the InOut Exchange Pattern (in milliseconds). The default is 20 seconds. You can include the header CamelJmsRequestTimeout to override this endpoint configured timeout value and thus have per message individual timeout values. See also the requestTimeoutCheckerInterval option. | long @@ -368,7 +368,7 @@ with the following path and query parameters: | **forceSendOriginalMessage** (producer) | false | When using mapJmsMessage=false Camel will create a new JMS message to send to a new JMS destination if you touch the headers (get or set) during the route. Set this option to true to force Camel to send the original JMS message that was received. | boolean | **includeSentJMSMessageID** (producer) | false | Only applicable when sending to JMS destination using InOnly (eg fire and forget). Enabling this option will enrich the Camel Exchange with the actual JMSMessageID that was used by the JMS client when the message was sent to the JMS destination. | boolean | **replyToCacheLevelName** (producer) | | Sets the cache level by name for the reply consumer when doing request/reply over JMS. This option only applies when using fixed reply queues (not temporary). Camel will by default use: CACHE_CONSUMER for exclusive or shared w/ replyToSelectorName. And CACHE_SESSION for shared without replyToSelectorName. Some JMS brokers such as IBM WebSphere may require to set the replyToCacheLevelName=CACHE_NONE to work. Note: If using temporary queues then CACHE_NONE is not allowed and you must use a higher value such as CACHE_CONSUMER or CACHE_SESSION. | String -| **replyToDestinationSelectorName** (producer) | | Sets the JMS Selector using the fixed name to be used so you can filter out your own replies from the others when using a shared queue (that is if you are not using a temporary reply queue). | String +| **replyToDestinationSelector Name** (producer) | | Sets the JMS Selector using the fixed name to be used so you can filter out your own replies from the others when using a shared queue (that is if you are not using a temporary reply queue). | String | **allowSerializedHeaders** (advanced) | false | Controls whether or not to include serialized headers. Applies only when link isTransferExchange() is true. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level. | boolean | **asyncStartListener** (advanced) | false | Whether to startup the JmsConsumer message listener asynchronously when starting a route. For example if a JmsConsumer cannot get a connection to a remote JMS broker then it may block while retrying and/or failover. This will cause Camel to block while starting routes. By setting this option to true you will let routes startup while the JmsConsumer connects to the JMS broker using a dedicated thread in asynchronous mode. If this option is used then beware that if the connection could not be established then an exception is logged at WARN level and the consumer will not be able to receive messages; You can then restart the route to retry. | boolean | **asyncStopListener** (advanced) | false | Whether to stop the JmsConsumer message listener asynchronously when stopping a route. | boolean @@ -385,25 +385,25 @@ with the following path and query parameters: | **messageConverter** (advanced) | | To use a custom Spring org.springframework.jms.support.converter.MessageConverter so you can be in control how to map to/from a javax.jms.Message. | MessageConverter | **messageCreatedStrategy** (advanced) | | To use the given MessageCreatedStrategy which are invoked when Camel creates new instances of javax.jms.Message objects when Camel is sending a JMS message. | MessageCreatedStrategy | **messageIdEnabled** (advanced) | true | When sending specifies whether message IDs should be added. This is just an hint to the JMS Broker. If the JMS provider accepts this hint these messages must have the message ID set to null; if the provider ignores the hint the message ID must be set to its normal unique value | boolean -| **messageListenerContainerFactory** (advanced) | | Registry ID of the MessageListenerContainerFactory used to determine what org.springframework.jms.listener.AbstractMessageListenerContainer to use to consume messages. Setting this will automatically set consumerType to Custom. | MessageListener ContainerFactory +| **messageListenerContainer Factory** (advanced) | | Registry ID of the MessageListenerContainerFactory used to determine what org.springframework.jms.listener.AbstractMessageListenerContainer to use to consume messages. Setting this will automatically set consumerType to Custom. | MessageListener ContainerFactory | **messageTimestampEnabled** (advanced) | true | Specifies whether timestamps should be enabled by default on sending messages. This is just an hint to the JMS Broker. If the JMS provider accepts this hint these messages must have the timestamp set to zero; if the provider ignores the hint the timestamp must be set to its normal value | boolean | **pubSubNoLocal** (advanced) | false | Specifies whether to inhibit the delivery of messages published by its own connection. | boolean | **receiveTimeout** (advanced) | 1000 | The timeout for receiving messages (in milliseconds). | long | **recoveryInterval** (advanced) | 5000 | Specifies the interval between recovery attempts i.e. when a connection is being refreshed in milliseconds. The default is 5000 ms that is 5 seconds. | long -| **requestTimeoutCheckerInterval** (advanced) | 1000 | Configures how often Camel should check for timed out Exchanges when doing request/reply over JMS. By default Camel checks once per second. But if you must react faster when a timeout occurs then you can lower this interval to check more frequently. The timeout is determined by the option requestTimeout. | long +| **requestTimeoutChecker Interval** (advanced) | 1000 | Configures how often Camel should check for timed out Exchanges when doing request/reply over JMS. By default Camel checks once per second. But if you must react faster when a timeout occurs then you can lower this interval to check more frequently. The timeout is determined by the option requestTimeout. | long | **synchronous** (advanced) | false | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported). | boolean | **transferException** (advanced) | false | If enabled and you are using Request Reply messaging (InOut) and an Exchange failed on the consumer side then the caused Exception will be send back in response as a javax.jms.ObjectMessage. If the client is Camel the returned Exception is rethrown. This allows you to use Camel JMS as a bridge in your routing - for example using persistent queues to enable robust routing. Notice that if you also have transferExchange enabled this option takes precedence. The caught exception is required to be serializable. The original Exception on the consumer side can be wrapped in an outer exception such as org.apache.camel.RuntimeCamelException when returned to the producer. | boolean | **transferExchange** (advanced) | false | You can transfer the exchange over the wire instead of just the body and headers. The following fields are transferred: In body Out body Fault body In headers Out headers Fault headers exchange properties exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level. You must enable this option on both the producer and consumer side so Camel knows the payloads is an Exchange and not a regular payload. | boolean | **transferFault** (advanced) | false | If enabled and you are using Request Reply messaging (InOut) and an Exchange failed with a SOAP fault (not exception) on the consumer side then the fault flag on link org.apache.camel.MessageisFault() will be send back in the response as a JMS header with the key link JmsConstantsJMS_TRANSFER_FAULT. If the client is Camel the returned fault flag will be set on the link org.apache.camel.MessagesetFault(boolean). You may want to enable this when using Camel components that support faults such as SOAP based such as cxf or spring-ws. | boolean -| **useMessageIDAsCorrelationID** (advanced) | false | Specifies whether JMSMessageID should always be used as JMSCorrelationID for InOut messages. | boolean -| **waitForProvisionCorrelationTo BeUpdatedCounter** (advanced) | 50 | Number of times to wait for provisional correlation id to be updated to the actual correlation id when doing request/reply over JMS and when the option useMessageIDAsCorrelationID is enabled. | int -| **waitForProvisionCorrelationTo BeUpdatedThreadSleepingTime** (advanced) | 100 | Interval in millis to sleep each time while waiting for provisional correlation id to be updated. | long +| **useMessageIDAsCorrelation ID** (advanced) | false | Specifies whether JMSMessageID should always be used as JMSCorrelationID for InOut messages. | boolean +| **waitForProvisionCorrelation ToBeUpdatedCounter** (advanced) | 50 | Number of times to wait for provisional correlation id to be updated to the actual correlation id when doing request/reply over JMS and when the option useMessageIDAsCorrelationID is enabled. | int +| **waitForProvisionCorrelation ToBeUpdatedThreadSleeping Time** (advanced) | 100 | Interval in millis to sleep each time while waiting for provisional correlation id to be updated. | long | **errorHandlerLoggingLevel** (logging) | WARN | Allows to configure the default errorHandler logging level for logging uncaught exceptions. | LoggingLevel | **errorHandlerLogStackTrace** (logging) | true | Allows to control whether stacktraces should be logged or not by the default errorHandler. | boolean | **password** (security) | | Password to use with the ConnectionFactory. You can also configure username/password directly on the ConnectionFactory. | String | **username** (security) | | Username to use with the ConnectionFactory. You can also configure username/password directly on the ConnectionFactory. | String | **transacted** (transaction) | false | Specifies whether to use transacted mode | boolean -| **lazyCreateTransactionManager** (transaction) | true | If true Camel will create a JmsTransactionManager if there is no transactionManager injected when option transacted=true. | boolean +| **lazyCreateTransaction Manager** (transaction) | true | If true Camel will create a JmsTransactionManager if there is no transactionManager injected when option transacted=true. | boolean | **transactionManager** (transaction) | | The Spring transaction manager to use. | PlatformTransaction Manager | **transactionName** (transaction) | | The name of the transaction to use. | String | **transactionTimeout** (transaction) | -1 | The timeout value of the transaction (in seconds) if using transacted mode. | int http://git-wip-us.apache.org/repos/asf/camel/blob/844f309a/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel index 4efc7dd..8e22fdf 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/component-options.mvel @@ -8,6 +8,6 @@ The @{title} component supports @{componentOptions.size()} options which are lis [width="100%",cols="2,1,6,1",options="header"] |======================================================================= | Name | Default | Description | Java Type -@foreach{row : componentOptions}| **@{row.getShortName(35)}** (@{row.shortGroup}) | @{row.getShortDefaultValue(25)} | @{row.description} | @{row.getShortJavaType(25)} +@foreach{row : componentOptions}| **@{row.getShortName(30)}** (@{row.shortGroup}) | @{row.getShortDefaultValue(20)} | @{row.description} | @{row.getShortJavaType(25)} @end{}|======================================================================= @end{} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/camel/blob/844f309a/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel ---------------------------------------------------------------------- diff --git a/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel b/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel index f49cbe4..f7504ee 100644 --- a/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel +++ b/tooling/maven/camel-package-maven-plugin/src/main/resources/endpoint-options.mvel @@ -9,7 +9,7 @@ with the following path and query parameters: [width="100%",cols="2,1,6,1",options="header"] |======================================================================= | Name | Default | Java Type | Description -@foreach{row : endpointPathOptions}| **@{row.getShortName(35)}** | @{row.getShortDefaultValue(25)} | @{row.description} | @{row.getShortJavaType(25)} +@foreach{row : endpointPathOptions}| **@{row.getShortName(30)}** | @{row.getShortDefaultValue(20)} | @{row.description} | @{row.getShortJavaType(25)} @end{}|======================================================================= #### Query Parameters (@{endpointOptions.size()} parameters): @@ -17,5 +17,5 @@ with the following path and query parameters: [width="100%",cols="2,1,6,1",options="header"] |======================================================================= | Name | Default | Java Type | Description -@foreach{row : endpointOptions}| **@{row.getShortName(35)}** (@{row.shortGroup}) | @{row.getShortDefaultValue(25)} | @{row.description} | @{row.getShortJavaType(25)} +@foreach{row : endpointOptions}| **@{row.getShortName(30)}** (@{row.shortGroup}) | @{row.getShortDefaultValue(20)} | @{row.description} | @{row.getShortJavaType(25)} @end{}|=======================================================================