mx4j.tools.adaptor.ssl
public interface SSLAdaptorServerSocketFactoryMBean extends AdaptorServerSocketFactory
Version: $Revision: 1.3 $
| Method Summary | |
|---|---|
| void | setKeyManagerAlgorithm(String algorithm)
Sets the key manager algorithm, by default is "SunX509". |
| void | setKeyManagerPassword(String password)
Sets the password to access the key present in the keystore. |
| void | setKeyStoreName(String name)
Sets the name of the keystore; if the keystore is of type JKS, then this is a file name, that will be
resolved by the ClassLoader of this class, via getResourceAsStream. |
| void | setKeyStorePassword(String password)
Sets the password to access the keystore specified by SSLAdaptorServerSocketFactoryMBean. |
| void | setKeyStoreType(String keyStoreType)
Sets the type of the keystore, by default is "JKS". |
| void | setSSLProtocol(String protocol)
Sets the SSL protocol version, by default is "TLS". |
| void | setTrustManagerAlgorithm(String algorithm)
Sets the trust manager algorithm, by default is "SunX509". |
| void | setTrustStoreName(String name)
Sets the name of the truststore; if the truststore is of type JKS, then this is a file name, that will be
resolved by the ClassLoader of this class, via getResourceAsStream. |
| void | setTrustStorePassword(String password)
Sets the password to access the truststore specified by SSLAdaptorServerSocketFactoryMBean. |
| void | setTrustStoreType(String trustStoreType)
Sets the type of the truststore, by default is "JKS". |
It correspond to the value of the -keypass option of keytool; if not specified, the KeyStore password is taken.
It correspond to the value of the -storepass option of keytool.
It correspond to the value of the -storepass option of keytool.