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 ef6b4c2 Regen
ef6b4c2 is described below
commit ef6b4c27b74aeada0ed56f8e9e14473c51e5d900
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu May 2 16:37:12 2019 +0200
Regen
---
docs/components/modules/ROOT/pages/coap-component.adoc | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/docs/components/modules/ROOT/pages/coap-component.adoc
b/docs/components/modules/ROOT/pages/coap-component.adoc
index 5bcdb86..d365cf3 100644
--- a/docs/components/modules/ROOT/pages/coap-component.adoc
+++ b/docs/components/modules/ROOT/pages/coap-component.adoc
@@ -50,28 +50,25 @@ with the following path and query parameters:
|===
-==== Query Parameters (16 parameters):
+==== Query Parameters (13 parameters):
[width="100%",cols="2,5,^1,2",options="header"]
|===
| Name | Description | Default | Type
-| *alias* (common) | Sets the alias used to query the KeyStore for the private
key and certificate. | | String
-| *cipherSuites* (common) | Sets the cipherSuites String. This is a comma
separated String of ciphersuites to configure. | | String
-| *keystore* (common) | Sets the TLS key store. Alternatively, a
KeyStoreParameters object can be configured instead. An alias and password
should also be configured on the route definition. | | KeyStore
-| *keyStoreParameters* (common) | The KeyStoreParameters object to use with
TLS to configure the keystore. Alternatively, a keystore parameter can be
directly configured instead. An alias and password should also be configured on
the route definition. | | KeyStoreParameters
+| *alias* (common) | Sets the alias used to query the KeyStore for the private
key and certificate. This parameter is used when we are enabling TLS with
certificates on the service side, and similarly on the client side when TLS is
used with certificates and client authentication. If the parameter is not
specified then the default behavior is to use the first alias in the keystore
that contains a key entry. This configuration parameter does not apply to
configuring TLS via a Raw Public K [...]
+| *cipherSuites* (common) | Sets the cipherSuites String. This is a comma
separated String of ciphersuites to configure. If it is not specified, then it
falls back to getting the ciphersuites from the sslContextParameters object. |
| String
+| *clientAuthentication* (common) | Sets the configuration options for
server-side client-authentication requirements. The value must be one of NONE,
WANT, REQUIRE. If this value is not specified, then it falls back to checking
the sslContextParameters.getServerParameters().getClientAuthentication() value.
| | String
| *privateKey* (common) | Set the configured private key for use with Raw
Public Key. | | PrivateKey
| *pskStore* (common) | Set the PskStore to use for pre-shared key. | |
PskStore
| *publicKey* (common) | Set the configured public key for use with Raw Public
Key. | | PublicKey
+| *sslContextParameters* (common) | Set the SSLContextParameters object for
setting up TLS. This is required for coapstcp, and for coaps when we are using
certificates for TLS (as opposed to RPK or PKS). | | SSLContextParameters
| *trustedRpkStore* (common) | Set the TrustedRpkStore to use to determine
trust in raw public keys. | | TrustedRpkStore
-| *truststore* (common) | Sets the TLS trust store. Alternatively, a
trustStoreParameters object can be configured instead. All certificates in the
truststore are used to establish trust. | | KeyStore
-| *trustStoreParameters* (common) | The KeyStoreParameters object to use with
TLS to configure the truststore. Alternatively, a truststore object can be
directly configured instead. All certificates in the truststore are used to
establish trust. | | KeyStoreParameters
| *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
| *coapMethodRestrict* (consumer) | Comma separated list of methods that the
CoAP consumer will bind to. The default is to bind to all methods (DELETE, GET,
POST, PUT). | | 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. | | ExchangePattern
| *synchronous* (advanced) | Sets whether synchronous processing should be
strictly used, or Camel is allowed to use asynchronous processing (if
supported). | false | boolean
-| *password* (security) | Sets the password used to access an aliased
PrivateKey in the KeyStore. | | String
|===
// endpoint options: END
// spring-boot-auto-configure options: START