Package com.ibm.wsspi.http
Interface SSLContext
public interface SSLContext
SSL information available for an HTTP connection.
- 
Method SummaryModifier and TypeMethodDescriptionString[]get the list of enabled cipher suitesString[]get a list of the enabled protocols.booleanconfigured to require client authenticationget the SSLSession that is associated with this session.booleanreturns true if the socket requires client mode in its first handshake.booleanwhether the socket would like the client to authenticate
- 
Method Details- 
getEnabledCipherSuitesString[] getEnabledCipherSuites()get the list of enabled cipher suites- Returns:
- String[]
 
- 
getEnabledProtocolsString[] getEnabledProtocols()get a list of the enabled protocols.- Returns:
- String[]
 
- 
getNeedClientAuthboolean getNeedClientAuth()configured to require client authentication- Returns:
- boolean
 
- 
getSessionSSLSession 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
 
 
-