Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Java Field Name and Class

XML Attribute/Element and Type

Description

keyStore- KeyStoreParameters

keyStore - KeyStoreParameters

This optional property represents the key store that provides key material to the key manager.  This is typically configured with a key store containing a user or server private key.  In some cases, such as when using PKCS#11, the key store is omitted entirely.

keyPassword - java.lang.String

@keyPassword - xsd:string

The optional password for recovering/accessing the private key in the key store.  This is typically the password for the private key in the configured key store; however, in some cases, such as when using PKCS#11, the key password may be provided through other means and is omitted entirely in this configuration.

provider - java.lang.String

@provider - xsd:string

The optional provider identifier for the KeyManagerFactory used to create the KeyManagers represented by this object's configuration.  If omitted, the default look-up behavior is used.

algorithm - java.lang.String

@algorithm - xsd:string

The optional algorithm name for the KeyManagerFactory used to create the KeyManager represented by this object's configuration.  See the Java Secure Socket Extension Reference Guide for information about standard algorithm names.

trustManager - java.lang.String@trustManager - xsd:stringCamel 2.17:To use a existing configured trust manager instead of using TrustManagerFactory to get the TrustManager.

TrustManagersParameters

Java Field Name and Class

XML Attribute/Element and Type

Description

keyStore- KeyStoreParameters

keyStore - KeyStoreParameters

This optional property represents the key store that provides key material to the trust manager.  This is typically configured with a key store containing trusted CA certificates / public keys.  In some cases, such as when using PKCS#11, the key store is omitted entirely.

provider - java.lang.String

@provider - xsd:string

The optional provider identifier for the TrustManagerFactory used to create the TrustManagers represented by this object's configuration.  If omitted, the default look-up behavior is used.

algorithm - java.lang.String

@algorithm - xsd:string

The optional algorithm name for the TrustManagerFactory used to create the TrustManager represented by this object's configuration.  See the Java Secure Socket Extension Reference Guide for information about standard algorithm names.

...