Interface TlsConfiguration
- 
- All Known Implementing Classes:
- TlsConfigurationImpl
 
 public interface TlsConfigurationTls configuration.- Author:
- michal.polkorab
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCertificatePassword()Returns the password protecting the certificate.List<String>getCipherSuites()Returns the list of cipher suites for TLS connection.StringgetKeystorePassword()Returns the password protecting the key store.StringgetTlsKeystore()Returns the key store location.PathTypegetTlsKeystorePathType()Returns the key store path type.KeystoreTypegetTlsKeystoreType()Returns the key store type.StringgetTlsTruststore()Returns the trust store location.PathTypegetTlsTruststorePathType()Returns the trust store path type.KeystoreTypegetTlsTruststoreType()Returns the trust store type.StringgetTruststorePassword()Returns the password protecting the trust store.
 
- 
- 
- 
Method Detail- 
getTlsKeystoreString getTlsKeystore() Returns the key store location.- Returns:
- key store location
 
 - 
getTlsKeystoreTypeKeystoreType getTlsKeystoreType() Returns the key store type.- Returns:
- key store type
 
 - 
getTlsTruststoreString getTlsTruststore() Returns the trust store location.- Returns:
- trust store location
 
 - 
getTlsTruststoreTypeKeystoreType getTlsTruststoreType() Returns the trust store type.- Returns:
- trust store type
 
 - 
getTlsKeystorePathTypePathType getTlsKeystorePathType() Returns the key store path type.- Returns:
- key store path type (CLASSPATH or PATH)
 
 - 
getTlsTruststorePathTypePathType getTlsTruststorePathType() Returns the trust store path type.- Returns:
- trust store path type (CLASSPATH or PATH)
 
 - 
getKeystorePasswordString getKeystorePassword() Returns the password protecting the key store.- Returns:
- password protecting the specified key store
 
 - 
getCertificatePasswordString getCertificatePassword() Returns the password protecting the certificate.- Returns:
- password protecting certificate
 
 - 
getTruststorePasswordString getTruststorePassword() Returns the password protecting the trust store.- Returns:
- password protecting specified trust store
 
 
- 
 
-