com.ibm.wsspi.http
Interface SSLContext
- public interface SSLContext
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getEnabledCipherSuites()
get the list of enabled cipher suites
|
|
getEnabledProtocols()
get a list of the enabled protocols.
|
|
getNeedClientAuth()
configured to require client authentication
|
|
getSession()
get the SSLSession that is associated with this session.
|
|
getUseClientMode()
returns true if the socket requires client mode in its first handshake.
|
|
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