Package com.ibm.wsspi.http
Interface SSLContext
public interface SSLContext
SSL information available for an HTTP connection.
-
Method Summary
Modifier and TypeMethodDescriptionString[]
get the list of enabled cipher suitesString[]
get a list of the enabled protocols.boolean
configured to require client authenticationget the SSLSession that is associated with this session.boolean
returns true if the socket requires client mode in its first handshake.boolean
whether the socket would like the client to authenticate
-
Method Details
-
getEnabledCipherSuites
String[] getEnabledCipherSuites()get the list of enabled cipher suites- Returns:
- String[]
-
getEnabledProtocols
String[] getEnabledProtocols()get a list of the enabled protocols.- Returns:
- String[]
-
getNeedClientAuth
boolean getNeedClientAuth()configured to require client authentication- Returns:
- boolean
-
getSession
SSLSession getSession()get the SSLSession that is associated with this session.- Returns:
- javax.net.ssl.SSLSession
-
getUseClientMode
boolean getUseClientMode()returns true if the socket requires client mode in its first handshake.- Returns:
- boolean
-
getWantClientAuth
boolean getWantClientAuth()whether the socket would like the client to authenticate- Returns:
- boolean
-