Package com.ibm.wsspi.http
Interface SSLContext
- 
 public interface SSLContextSSL information available for an HTTP connection.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]getEnabledCipherSuites()get the list of enabled cipher suitesjava.lang.String[]getEnabledProtocols()get a list of the enabled protocols.booleangetNeedClientAuth()configured to require client authenticationjavax.net.ssl.SSLSessiongetSession()get the SSLSession that is associated with this session.booleangetUseClientMode()returns true if the socket requires client mode in its first handshake.booleangetWantClientAuth()whether the socket would like the client to authenticate
 
- 
- 
- 
Method Detail- 
getEnabledCipherSuitesjava.lang.String[] getEnabledCipherSuites() get the list of enabled cipher suites- Returns:
- String[]
 
 - 
getEnabledProtocolsjava.lang.String[] getEnabledProtocols() get a list of the enabled protocols.- Returns:
- String[]
 
 - 
getNeedClientAuthboolean getNeedClientAuth() configured to require client authentication- Returns:
- boolean
 
 - 
getSessionjavax.net.ssl.SSLSession getSession() get the SSLSession that is associated with this session.- Returns:
- javax.net.ssl.SSLSession
 
 - 
getUseClientModeboolean getUseClientMode() returns true if the socket requires client mode in its first handshake.- Returns:
- boolean
 
 - 
getWantClientAuthboolean getWantClientAuth() whether the socket would like the client to authenticate- Returns:
- boolean
 
 
- 
 
-