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
The following commit(s) were added to refs/heads/master by this push: new d328523 Regen d328523 is described below commit d32852377096cf60efd0f76c3be859a873fb0078 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Mar 25 17:17:42 2020 +0100 Regen --- docs/components/modules/ROOT/pages/elytron-component.adoc | 6 ++++-- docs/components/modules/ROOT/pages/milo-client-component.adoc | 8 +++++--- docs/components/modules/ROOT/pages/undertow-component.adoc | 6 ++++-- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/docs/components/modules/ROOT/pages/elytron-component.adoc b/docs/components/modules/ROOT/pages/elytron-component.adoc index a982cef..6aaca9a 100644 --- a/docs/components/modules/ROOT/pages/elytron-component.adoc +++ b/docs/components/modules/ROOT/pages/elytron-component.adoc @@ -50,7 +50,7 @@ You can append query options to the URI in the following format, == Options // component options: START -The Elytron component supports 13 options, which are listed below. +The Elytron component supports 14 options, which are listed below. @@ -68,6 +68,7 @@ The Elytron component supports 13 options, which are listed below. | *undertowHttpBinding* (advanced) | To use a custom HttpBinding to control the mapping between Camel message and HttpClient. | | UndertowHttpBinding | *allowedRoles* (security) | Configuration used by UndertowSecurityProvider. Comma separated list of allowed roles. | | String | *securityConfiguration* (security) | Configuration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides, whether it accepts configuration. | | Object +| *securityProvider* (security) | Security provider allows plug in the provider, which will be used to secure requests. SPI approach could be used too (component then finds security provider using SPI). | | UndertowSecurityProvider | *sslContextParameters* (security) | To configure security using SSLContextParameters | | SSLContextParameters | *useGlobalSslContextParameters* (security) | Enable usage of global SSL context parameters. | false | boolean |=== @@ -93,7 +94,7 @@ with the following path and query parameters: |=== -=== Query Parameters (30 parameters): +=== Query Parameters (31 parameters): [width="100%",cols="2,5,^1,2",options="header"] @@ -125,6 +126,7 @@ with the following path and query parameters: | *undertowHttpBinding* (advanced) | To use a custom UndertowHttpBinding to control the mapping between Camel message and undertow. | | UndertowHttpBinding | *allowedRoles* (security) | List of allowed roles in String format | | String | *securityConfiguration* (security) | OConfiguration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides whether accepts configuration. | | Object +| *securityProvider* (security) | Security provider allows plug in the provider, which will be used to secure requests. SPI approach could be used too (endpoint then finds security provider using SPI). | | UndertowSecurityProvider | *sslContextParameters* (security) | To configure security using SSLContextParameters | | SSLContextParameters | *fireWebSocketChannelEvents* (websocket) | if true, the consumer will post notifications to the route when a new WebSocket peer connects, disconnects, etc. See UndertowConstants.EVENT_TYPE and EventType. | false | boolean | *sendTimeout* (websocket) | Timeout in milliseconds when sending to a websocket channel. The default timeout is 30000 (30 seconds). | 30000 | Integer diff --git a/docs/components/modules/ROOT/pages/milo-client-component.adoc b/docs/components/modules/ROOT/pages/milo-client-component.adoc index 52ae831..ba2c6e7 100644 --- a/docs/components/modules/ROOT/pages/milo-client-component.adoc +++ b/docs/components/modules/ROOT/pages/milo-client-component.adoc @@ -29,7 +29,7 @@ for this component: // component options: START -The OPC UA Client component supports 23 options, which are listed below. +The OPC UA Client component supports 24 options, which are listed below. @@ -56,6 +56,7 @@ The OPC UA Client component supports 23 options, which are listed below. | *maxResponseMessageSize* (client) | The maximum number of bytes a response message may have | | Long | *overrideHost* (client) | Override the server reported endpoint host with the host from the endpoint URI. | false | boolean | *productUri* (client) | The product URI | http://camel.apache.org/EclipseMilo | String +| *requestedPublishingInterval* (client) | The requested publishing interval in milliseconds | 1_000.0 | Double | *requestTimeout* (client) | Request timeout in milliseconds | | Long | *sessionName* (client) | Session name | | String | *sessionTimeout* (client) | Session timeout in milliseconds | | Long @@ -121,7 +122,7 @@ with the following path and query parameters: |=== -=== Query Parameters (29 parameters): +=== Query Parameters (30 parameters): [width="100%",cols="2,5,^1,2",options="header"] @@ -133,7 +134,7 @@ with the following path and query parameters: | *discoveryEndpointUri* (common) | An alternative discovery URI | | String | *method* (common) | The method definition (see Method ID) | | String | *node* (common) | The node definition (see Node ID) | | String -| *samplingInterval* (common) | The sampling interval in milliseconds | | Double +| *samplingInterval* (common) | The sampling interval in milliseconds | 0.0 | Double | *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 | *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 @@ -153,6 +154,7 @@ with the following path and query parameters: | *maxResponseMessageSize* (client) | The maximum number of bytes a response message may have | | Long | *overrideHost* (client) | Override the server reported endpoint host with the host from the endpoint URI. | false | boolean | *productUri* (client) | The product URI | http://camel.apache.org/EclipseMilo | String +| *requestedPublishingInterval* (client) | The requested publishing interval in milliseconds | 1_000.0 | Double | *requestTimeout* (client) | Request timeout in milliseconds | | Long | *sessionName* (client) | Session name | | String | *sessionTimeout* (client) | Session timeout in milliseconds | | Long diff --git a/docs/components/modules/ROOT/pages/undertow-component.adoc b/docs/components/modules/ROOT/pages/undertow-component.adoc index bd4c28a..4ad4ec5 100644 --- a/docs/components/modules/ROOT/pages/undertow-component.adoc +++ b/docs/components/modules/ROOT/pages/undertow-component.adoc @@ -48,7 +48,7 @@ You can append query options to the URI in the following format, == Options // component options: START -The Undertow component supports 10 options, which are listed below. +The Undertow component supports 11 options, which are listed below. @@ -63,6 +63,7 @@ The Undertow component supports 10 options, which are listed below. | *undertowHttpBinding* (advanced) | To use a custom HttpBinding to control the mapping between Camel message and HttpClient. | | UndertowHttpBinding | *allowedRoles* (security) | Configuration used by UndertowSecurityProvider. Comma separated list of allowed roles. | | String | *securityConfiguration* (security) | Configuration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides, whether it accepts configuration. | | Object +| *securityProvider* (security) | Security provider allows plug in the provider, which will be used to secure requests. SPI approach could be used too (component then finds security provider using SPI). | | UndertowSecurityProvider | *sslContextParameters* (security) | To configure security using SSLContextParameters | | SSLContextParameters | *useGlobalSslContextParameters* (security) | Enable usage of global SSL context parameters. | false | boolean |=== @@ -88,7 +89,7 @@ with the following path and query parameters: |=== -=== Query Parameters (30 parameters): +=== Query Parameters (31 parameters): [width="100%",cols="2,5,^1,2",options="header"] @@ -120,6 +121,7 @@ with the following path and query parameters: | *undertowHttpBinding* (advanced) | To use a custom UndertowHttpBinding to control the mapping between Camel message and undertow. | | UndertowHttpBinding | *allowedRoles* (security) | Configuration used by UndertowSecurityProvider. Comma separated list of allowed roles. | | String | *securityConfiguration* (security) | OConfiguration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides whether accepts configuration. | | Object +| *securityProvider* (security) | Security provider allows plug in the provider, which will be used to secure requests. SPI approach could be used too (endpoint then finds security provider using SPI). | | UndertowSecurityProvider | *sslContextParameters* (security) | To configure security using SSLContextParameters | | SSLContextParameters | *fireWebSocketChannelEvents* (websocket) | if true, the consumer will post notifications to the route when a new WebSocket peer connects, disconnects, etc. See UndertowConstants.EVENT_TYPE and EventType. | false | boolean | *sendTimeout* (websocket) | Timeout in milliseconds when sending to a websocket channel. The default timeout is 30000 (30 seconds). | 30000 | Integer