| javax.net.ssl.SSLSocketFactory org.continuent.sequoia.common.net.AuthenticatedSocketFactory
AuthenticatedSocketFactory | public class AuthenticatedSocketFactory extends SSLSocketFactory implements Serializable(Code) | | This class defines a AuthenticatedSSLSocketFactory
It is a wrapper around the socket factory in the constructor and sets the
setNeedClientAuth to true to enforce client authentication with the public
key
author: Marc Wick version: 1.0 |
Method Summary | |
public Socket | createSocket(String host, int port) | public Socket | createSocket(InetAddress host, int port) | public Socket | createSocket(String host, int port, InetAddress localAddress, int localPort) | public Socket | createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) | public Socket | createSocket(Socket s, String host, int port, boolean autoClose) | public String[] | getDefaultCipherSuites() | public String[] | getSupportedCipherSuites() |
AuthenticatedSocketFactory | public AuthenticatedSocketFactory(SSLSocketFactory factory)(Code) | | Creates a new AuthenticatedSSLSocketFactory.java object
Parameters: factory - - the factory |
|
|