Package com.icegreen.greenmail.util
Class DummySSLSocketFactory
- java.lang.Object
-
- javax.net.SocketFactory
-
- javax.net.ssl.SSLSocketFactory
-
- com.icegreen.greenmail.util.DummySSLSocketFactory
-
public class DummySSLSocketFactory extends SSLSocketFactory
DummySSLSocketFactory - NOT SECURE
-
-
Field Summary
Fields Modifier and Type Field Description protected static org.slf4j.Loggerlog
-
Constructor Summary
Constructors Constructor Description DummySSLSocketFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SocketcreateSocket()SocketcreateSocket(String s, int i)SocketcreateSocket(String s, int i, InetAddress inaddr, int j)SocketcreateSocket(InetAddress inaddr, int i)SocketcreateSocket(InetAddress inaddr, int i, InetAddress inaddr1, int j)SocketcreateSocket(Socket socket, String s, int i, boolean flag)static SocketFactorygetDefault()String[]getDefaultCipherSuites()String[]getSupportedCipherSuites()-
Methods inherited from class javax.net.ssl.SSLSocketFactory
createSocket
-
-
-
-
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 s, int i, boolean flag) throws IOException
- Specified by:
createSocketin classSSLSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress inaddr, int i, InetAddress inaddr1, int j) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress inaddr, int i) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(String s, int i, InetAddress inaddr, int j) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(String s, int i) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
getDefaultCipherSuites
public String[] getDefaultCipherSuites()
- Specified by:
getDefaultCipherSuitesin classSSLSocketFactory
-
getSupportedCipherSuites
public String[] getSupportedCipherSuites()
- Specified by:
getSupportedCipherSuitesin classSSLSocketFactory
-
-