Uses of Class
org.apache.camel.util.jsse.KeyStoreParameters

Packages that use KeyStoreParameters
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.model.dataformat The JAXB POJOs for the Data Formats used to marshal and unmarshal objects to and from streams inside components 
org.apache.camel.util.jsse A collection of utility classes for configuring a JSSE SSLContext and other JSSE classes. 
 

Uses of KeyStoreParameters in org.apache.camel.builder
 

Methods in org.apache.camel.builder with parameters of type KeyStoreParameters
 T DataFormatClause.secureXML(String secureTag, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters)
          Uses the XML Security data format
 T DataFormatClause.secureXML(String secureTag, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters, String keyPassword)
          Uses the XML Security data format
 T DataFormatClause.secureXML(String secureTag, Map<String,String> namespaces, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters)
          Uses the XML Security data format
 T DataFormatClause.secureXML(String secureTag, Map<String,String> namespaces, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters, String keyPassword)
          Uses the XML Security data format
 T DataFormatClause.secureXML(String secureTag, Map<String,String> namespaces, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters, String keyPassword, String digestAlgorithm)
          Uses the XML Security data format
 

Uses of KeyStoreParameters in org.apache.camel.model.dataformat
 

Constructors in org.apache.camel.model.dataformat with parameters of type KeyStoreParameters
XMLSecurityDataFormat(String secureTag, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters)
           
XMLSecurityDataFormat(String secureTag, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters, String keyPassword)
           
XMLSecurityDataFormat(String secureTag, Map<String,String> namespaces, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters)
           
XMLSecurityDataFormat(String secureTag, Map<String,String> namespaces, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters, String keyPassword)
           
XMLSecurityDataFormat(String secureTag, Map<String,String> namespaces, boolean secureTagContents, String recipientKeyAlias, String xmlCipherAlgorithm, String keyCipherAlgorithm, KeyStoreParameters keyOrTrustStoreParameters, String keyPassword, String digestAlgorithm)
           
 

Uses of KeyStoreParameters in org.apache.camel.util.jsse
 

Fields in org.apache.camel.util.jsse declared as KeyStoreParameters
protected  KeyStoreParameters KeyManagersParameters.keyStore
          The key store configuration used to create the KeyStoreParameters that the KeyManagers produced by this object's configuration expose.
protected  KeyStoreParameters TrustManagersParameters.keyStore
          The key store configuration used to create the KeyStoreParameters that the TrustManagers produced by this object's configuration expose.
 

Methods in org.apache.camel.util.jsse that return KeyStoreParameters
 KeyStoreParameters KeyManagersParameters.getKeyStore()
           
 KeyStoreParameters TrustManagersParameters.getKeyStore()
           
 

Methods in org.apache.camel.util.jsse with parameters of type KeyStoreParameters
 void KeyManagersParameters.setKeyStore(KeyStoreParameters value)
          Sets the key store configuration used to create the KeyStore that the KeyManagers produced by this object's configuration expose.
 void TrustManagersParameters.setKeyStore(KeyStoreParameters value)
          Sets the key store configuration used to create the KeyStoreParameters that the TrustManagers produced by this object's configuration expose.
 



Apache Camel