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 StringTRUSTSTORE_KEYstatic StringTRUSTSTORE_PASSWORD_KEY
-
Constructor Summary
Constructors Constructor Description SilverpeasSSLSocketFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SocketcreateSocket()SocketcreateSocket(String host, int port)SocketcreateSocket(String host, int port, InetAddress localHost, int localPort)SocketcreateSocket(InetAddress address, int port)SocketcreateSocket(InetAddress address, int port, InetAddress localAddress, int localPort)SocketcreateSocket(Socket socket, String host, int port, boolean autoClose)static SocketFactorygetDefault()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:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException
- Specified by:
createSocketin classSSLSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress address, int port) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(String host, int port) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
getDefaultCipherSuites
public String[] getDefaultCipherSuites()
- Specified by:
getDefaultCipherSuitesin classSSLSocketFactory
-
getSupportedCipherSuites
public String[] getSupportedCipherSuites()
- Specified by:
getSupportedCipherSuitesin classSSLSocketFactory
-
-