Method from javax.net.ssl.DefaultSSLSocketFactory Detail: |
public Socket createSocket() throws IOException {
return throwException();
}
|
public Socket createSocket(String host,
int port) throws IOException {
return throwException();
}
|
public Socket createSocket(InetAddress address,
int port) throws IOException {
return throwException();
}
|
public Socket createSocket(Socket s,
String host,
int port,
boolean autoClose) throws IOException {
return throwException();
}
|
public Socket createSocket(String host,
int port,
InetAddress clientAddress,
int clientPort) throws IOException {
return throwException();
}
|
public Socket createSocket(InetAddress address,
int port,
InetAddress clientAddress,
int clientPort) throws IOException {
return throwException();
}
|
public String[] getDefaultCipherSuites() {
return new String[0];
}
|
public String[] getSupportedCipherSuites() {
return new String[0];
}
|