Package org.frankframework.encryption
Interface HasKeystore
- All Superinterfaces:
org.springframework.context.ApplicationContextAware
,org.springframework.beans.factory.Aware
,IConfigurationAware
,IScopeProvider
- All Known Implementing Classes:
AbstractHttpSender
,AbstractHttpSession
,HttpSender
,HttpSession
,MultipartHttpSender
,RestSender
,SendGridSender
,SignaturePipe
,WebServiceSender
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setKeyManagerAlgorithm
(String keyManagerAlgorithm) Key manager algorithm.void
setKeystore
(String keystore) Resource url to keystore or certificate.void
setKeystoreAlias
(String keystoreAlias) Alias to obtain specific certificate or key in keystorevoid
setKeystoreAliasAuthAlias
(String keystoreAliasAuthAlias) Authentication alias to authenticate access to certificate or key indicated bykeystoreAlias
void
setKeystoreAliasPassword
(String keystoreAliasPassword) Default password to authenticate access to certificate or key indicated bykeystoreAlias
void
setKeystoreAuthAlias
(String keystoreAuthAlias) Authentication alias used to obtain keystore passwordvoid
setKeystorePassword
(String keystorePassword) Default password to access keystorevoid
setKeystoreType
(KeystoreType keystoreType) Type of keystoreMethods inherited from interface org.springframework.context.ApplicationContextAware
setApplicationContext
Methods inherited from interface org.frankframework.core.IConfigurationAware
getApplicationContext, getName
Methods inherited from interface org.frankframework.core.IScopeProvider
getConfigurationClassLoader
-
Method Details
-
getKeystore
String getKeystore() -
getKeystoreType
KeystoreType getKeystoreType() -
getKeystoreAuthAlias
String getKeystoreAuthAlias() -
getKeystorePassword
String getKeystorePassword() -
getKeystoreAlias
String getKeystoreAlias() -
getKeystoreAliasAuthAlias
String getKeystoreAliasAuthAlias() -
getKeystoreAliasPassword
String getKeystoreAliasPassword() -
getKeyManagerAlgorithm
String getKeyManagerAlgorithm() -
setKeystore
Resource url to keystore or certificate. If none specified, the JVMs default keystore will be used. -
setKeystoreType
Type of keystore- Default value
- pkcs12
-
setKeystoreAuthAlias
Authentication alias used to obtain keystore password -
setKeystorePassword
Default password to access keystore -
setKeyManagerAlgorithm
Key manager algorithm. Can be left empty to use the servers default algorithm -
setKeystoreAlias
Alias to obtain specific certificate or key in keystore -
setKeystoreAliasAuthAlias
Authentication alias to authenticate access to certificate or key indicated bykeystoreAlias
-
setKeystoreAliasPassword
Default password to authenticate access to certificate or key indicated bykeystoreAlias
-