| org.jboss.net.ssl.JBossSocketFactory
JBossSocketFactory | public class JBossSocketFactory extends JSSESocketFactory (Code) | | Extends the tomcat JSSE14SocketFactory to obtain the server key and trust
stores from the SecurityDomain defined by the securityDomain attribute
of the connector.
|
JBossSocketFactory | public JBossSocketFactory()(Code) | | |
getKeyManagers | protected KeyManager[] getKeyManagers(String keystoreType, String algorithm, String keyAlias) throws Exception(Code) | | Override to obtain the KeyManagers from the security domain.
Parameters: keystoreType - - ignored, this comes from the security domain Parameters: algorithm - - ignored, this comes from the security domain Parameters: keyAlias - - ignored the array of KeyManagers from the security domain throws: Exception - |
getKeystore | protected KeyStore getKeystore(String type, String pass) throws IOException(Code) | | Gets the SSL server's keystore from the SecurityDomain.
Parameters: type - - ignored, this comes from the security domain config Parameters: pass - - ignore, this comes from the security domain config the KeyStore for the server cert throws: IOException - |
getTrustManagers | protected TrustManager[] getTrustManagers(String keystoreType, String algorithm) throws Exception(Code) | | Override to obtain the TrustManagers from the security domain.
Parameters: keystoreType - - ignored, this comes from the security domain Parameters: algorithm - - ignored, this comes from the security domain the array of TrustManagers from the security domain throws: Exception - |
|
|