Package org.frankframework.encryption
Interface HasTruststore
- All Superinterfaces:
IScopeProvider
- All Known Implementing Classes:
AbstractHttpSender
,AbstractHttpSession
,HttpSender
,HttpSession
,MultipartHttpSender
,RestSender
,SendGridSender
,WebServiceSender
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
void
setAllowSelfSignedCertificates
(boolean allowSelfSignedCertificates) Iftrue
, self signed certificates are acceptedvoid
setIgnoreCertificateExpiredException
(boolean ignoreCertificateExpiredException) Iftrue
, CertificateExpiredExceptions are ignoredvoid
setTrustManagerAlgorithm
(String trustManagerAlgorithm) Trust manager algorithm.void
setTruststore
(String truststore) Resource url to truststore.void
setTruststoreAuthAlias
(String truststoreAuthAlias) Authentication alias used to obtain truststore passwordvoid
setTruststorePassword
(String truststorePassword) Default password to access truststorevoid
setTruststoreType
(KeystoreType truststoreType) Type of truststorevoid
setVerifyHostname
(boolean verifyHostname) Iftrue
, the hostname in the certificate will be checked against the actual hostname of the peerMethods inherited from interface org.frankframework.core.IScopeProvider
getConfigurationClassLoader
-
Method Details
-
getTruststore
String getTruststore() -
getTruststoreType
KeystoreType getTruststoreType() -
getTruststoreAuthAlias
String getTruststoreAuthAlias() -
getTruststorePassword
String getTruststorePassword() -
getTrustManagerAlgorithm
String getTrustManagerAlgorithm() -
isVerifyHostname
boolean isVerifyHostname() -
isAllowSelfSignedCertificates
boolean isAllowSelfSignedCertificates() -
isIgnoreCertificateExpiredException
boolean isIgnoreCertificateExpiredException() -
setTruststore
Resource url to truststore. If none specified, the JVMs default truststore will be used. -
setTruststoreType
Type of truststore- Default value
- jks
-
setTruststoreAuthAlias
Authentication alias used to obtain truststore password -
setTruststorePassword
Default password to access truststore -
setTrustManagerAlgorithm
Trust manager algorithm. Can be left empty to use the servers default algorithm -
setVerifyHostname
Iftrue
, the hostname in the certificate will be checked against the actual hostname of the peer- Default value
- false
-
setAllowSelfSignedCertificates
Iftrue
, self signed certificates are accepted- Default value
- false
-
setIgnoreCertificateExpiredException
Iftrue
, CertificateExpiredExceptions are ignored- Default value
- false
-