Package com.logicaldoc.util.security
Class DummySSLSocketFactory
- java.lang.Object
-
- javax.net.SocketFactory
-
- javax.net.ssl.SSLSocketFactory
-
- com.logicaldoc.util.security.DummySSLSocketFactory
-
public class DummySSLSocketFactory extends SSLSocketFactory
An SSL socket factory that will let any certifacte past, even if it's expired or not singed by a root CA.- Since:
- 8.1
- Author:
- Marco Meschieri - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description DummySSLSocketFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Socket
createSocket(String s, int i)
Socket
createSocket(String s, int i, InetAddress inaddr, int j)
Socket
createSocket(InetAddress inaddr, int i)
Socket
createSocket(InetAddress inaddr, int i, InetAddress inaddr2, int j)
Socket
createSocket(Socket socket, String s, int i, boolean flag)
static SocketFactory
getDefault()
String[]
getDefaultCipherSuites()
String[]
getSupportedCipherSuites()
-
Methods inherited from class javax.net.ssl.SSLSocketFactory
createSocket
-
Methods inherited from class javax.net.SocketFactory
createSocket
-
-
-
-
Method Detail
-
getDefault
public static SocketFactory getDefault()
-
createSocket
public Socket createSocket(Socket socket, String s, int i, boolean flag) throws IOException
- Specified by:
createSocket
in classSSLSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress inaddr, int i, InetAddress inaddr2, int j) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress inaddr, int i) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(String s, int i, InetAddress inaddr, int j) throws IOException
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(String s, int i) 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
-
-