Package org.frankframework.encryption
Interface HasKeystore
- All Superinterfaces:
HasApplicationContext,IScopeProvider
- All Known Subinterfaces:
FtpFileSystemDelegator
- All Known Implementing Classes:
AbstractHttpSender,AbstractHttpSession,CmisHttpSender,CmisSender,ExchangeFileSystem,FtpFileSystem,FtpFileSystemListener,FtpFileSystemSender,FtpSession,HttpSender,HttpSession,MsalClientAdapter,NetStorageSender,SendGridSender,SignaturePipe,WebServiceSender
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetKeyManagerAlgorithm(String keyManagerAlgorithm) Key manager algorithm.voidsetKeystore(String keystore) Resource url to keystore or certificate.voidsetKeystoreAlias(String keystoreAlias) Alias to obtain specific certificate or key in keystorevoidsetKeystoreAliasAuthAlias(String keystoreAliasAuthAlias) Authentication alias to authenticate access to certificate or key indicated bykeystoreAliasvoidsetKeystoreAliasPassword(String keystoreAliasPassword) Default password to authenticate access to certificate or key indicated bykeystoreAliasvoidsetKeystoreAuthAlias(String keystoreAuthAlias) Authentication alias used to obtain keystore passwordvoidsetKeystorePassword(String keystorePassword) Default password to access keystorevoidsetKeystoreType(KeystoreType keystoreType) Type of keystoreMethods inherited from interface org.frankframework.core.HasApplicationContext
getApplicationContext, 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
-