All Methods Instance Methods Concrete Methods
| Modifier and Type |
Method and Description |
void |
addTrustMaterial(TrustChain trustChain) |
ServerSocket |
createServerSocket() |
ServerSocket |
createServerSocket(int port,
int backlog,
InetAddress localHost)
Attempts to get a new socket connection to the given host within the
given time limit.
|
Socket |
createSocket() |
Socket |
createSocket(Socket s,
String remoteHost,
int remotePort,
boolean autoClose) |
Socket |
createSocket(String remoteHost,
int remotePort,
InetAddress localHost,
int localPort,
int timeout)
Attempts to get a new socket connection to the given host within the
given time limit.
|
void |
doPostConnectSocketStuff(Socket s,
String host) |
void |
doPreConnectServerSocketStuff(SSLServerSocket s) |
void |
doPreConnectSocketStuff(Socket s) |
X509Certificate[] |
getAssociatedCertificateChain() |
boolean |
getCheckCRL() |
boolean |
getCheckExpiry() |
boolean |
getCheckHostname() |
int |
getConnectTimeout() |
X509Certificate[] |
getCurrentClientChain() |
X509Certificate[] |
getCurrentServerChain() |
String[] |
getDefaultCipherSuites() |
String |
getDefaultProtocol() |
String[] |
getEnabledCiphers() |
String[] |
getEnabledProtocols() |
HostnameVerifier |
getHostnameVerifier() |
boolean |
getNeedClientAuth() |
int |
getSoTimeout() |
SSLContext |
getSSLContext() |
Object |
getSSLContextAsObject() |
SSLServerSocketFactory |
getSSLServerSocketFactory() |
SSLSocketFactory |
getSSLSocketFactory() |
SSLWrapperFactory |
getSSLWrapperFactory() |
String[] |
getSupportedCipherSuites() |
TrustChain |
getTrustChain() |
boolean |
getUseClientMode() |
boolean |
getUseClientModeDefault() |
boolean |
getWantClientAuth() |
boolean |
isSecure() |
void |
setCheckCRL(boolean checkCRL) |
void |
setCheckExpiry(boolean checkExpiry) |
void |
setCheckHostname(boolean checkHostname) |
void |
setConnectTimeout(int connectTimeout) |
void |
setCurrentClientChain(X509Certificate[] chain) |
void |
setCurrentServerChain(X509Certificate[] chain) |
void |
setDefaultProtocol(String protocol) |
void |
setDnsOverride(Map m) |
void |
setEnabledCiphers(String[] ciphers) |
void |
setEnabledProtocols(String[] protocols) |
void |
setHostnameVerifier(HostnameVerifier verifier) |
void |
setIsSecure(boolean b) |
void |
setKeyMaterial(KeyMaterial keyMaterial) |
void |
setNeedClientAuth(boolean needClientAuth) |
void |
setSoTimeout(int soTimeout) |
void |
setSSLWrapperFactory(SSLWrapperFactory wf) |
void |
setTrustMaterial(TrustChain trustChain) |
void |
setUseClientMode(boolean useClientMode) |
void |
setWantClientAuth(boolean wantClientAuth) |