Class SilverpeasSSLSocketFactory
- java.lang.Object
-
- javax.net.SocketFactory
-
- javax.net.ssl.SSLSocketFactory
-
- org.silverpeas.core.security.encryption.SilverpeasSSLSocketFactory
-
public class SilverpeasSSLSocketFactory extends SSLSocketFactory
This is our own implementation of SSLSocketFactory using the default one but specifying our own truststore file thus enabling Silverpeas to configure this system element. The TrustStore is the one declared in Silverpeas, not the one in the default System.properties at launch time.- Author:
- ehugonnet
-
-
Field Summary
Fields Modifier and Type Field Description static String
TRUSTSTORE_KEY
static String
TRUSTSTORE_PASSWORD_KEY
-
Constructor Summary
Constructors Constructor Description SilverpeasSSLSocketFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Socket
createSocket()
Socket
createSocket(String host, int port)
Socket
createSocket(String host, int port, InetAddress localHost, int localPort)
Socket
createSocket(InetAddress address, int port)
Socket
createSocket(InetAddress address, int port, InetAddress localAddress, int localPort)
Socket
createSocket(Socket socket, String host, int port, boolean autoClose)
static SocketFactory
getDefault()
String[]
getDefaultCipherSuites()
String[]
getSupportedCipherSuites()
-
Methods inherited from class javax.net.ssl.SSLSocketFactory
createSocket
-
-
-
-
Field Detail
-
TRUSTSTORE_KEY
public static final String TRUSTSTORE_KEY
- See Also:
- Constant Field Values
-
TRUSTSTORE_PASSWORD_KEY
public static final String TRUSTSTORE_PASSWORD_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDefault
public static SocketFactory getDefault()
-
createSocket
public Socket createSocket() throws IOException
- Overrides:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException
- Specified by:
createSocket
in classSSLSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress address, int port) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(String host, int port) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
getDefaultCipherSuites
public String[] getDefaultCipherSuites()
- Specified by:
getDefaultCipherSuites
in classSSLSocketFactory
-
getSupportedCipherSuites
public String[] getSupportedCipherSuites()
- Specified by:
getSupportedCipherSuites
in classSSLSocketFactory
-
-