Package org.jboss.modcluster.config
Interface SSLConfiguration
-
- All Known Implementing Classes:
ModClusterConfig,ModClusterListener,ModClusterListener
public interface SSLConfigurationA SSLConfiguration.- Author:
- Brian Stansberry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetSslCertificateEncodingAlgorithm()Certificate encoding algorithm.StringgetSslCiphers()SSL ciphers.StringgetSslCrlFile()Certificate revocation list.StringgetSslKeyAlias()Key alias.StringgetSslKeyStore()SSL keystore.StringgetSslKeyStorePassword()SSL keystore password.StringgetSslKeyStoreProvider()Keystore provider.StringgetSslKeyStoreType()Keystore type.StringgetSslProtocol()SSL protocol.StringgetSslTrustAlgorithm()Truststore algorithm.intgetSslTrustMaxCertLength()Trust max certificate length.StringgetSslTrustStore()Trust store file.StringgetSslTrustStorePassword()Trust store password.StringgetSslTrustStoreProvider()Trust store provider.StringgetSslTrustStoreType()Trust store type.
-
-
-
Method Detail
-
getSslCiphers
String getSslCiphers()
SSL ciphers.
-
getSslProtocol
String getSslProtocol()
SSL protocol.
-
getSslCertificateEncodingAlgorithm
String getSslCertificateEncodingAlgorithm()
Certificate encoding algorithm.
-
getSslKeyStore
String getSslKeyStore()
SSL keystore.
-
getSslKeyStorePassword
String getSslKeyStorePassword()
SSL keystore password.
-
getSslKeyStoreType
String getSslKeyStoreType()
Keystore type.
-
getSslKeyStoreProvider
String getSslKeyStoreProvider()
Keystore provider.
-
getSslTrustAlgorithm
String getSslTrustAlgorithm()
Truststore algorithm.
-
getSslKeyAlias
String getSslKeyAlias()
Key alias.
-
getSslCrlFile
String getSslCrlFile()
Certificate revocation list.
-
getSslTrustMaxCertLength
int getSslTrustMaxCertLength()
Trust max certificate length.
-
getSslTrustStore
String getSslTrustStore()
Trust store file.
-
getSslTrustStorePassword
String getSslTrustStorePassword()
Trust store password.
-
getSslTrustStoreType
String getSslTrustStoreType()
Trust store type.
-
getSslTrustStoreProvider
String getSslTrustStoreProvider()
Trust store provider.
-
-