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