com.ibm.wsspi.http

Interface SSLContext


  1. public interface SSLContext
SSL information available for an HTTP connection.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String[]
getEnabledCipherSuites()
get the list of enabled cipher suites
  1. java.lang.String[]
getEnabledProtocols()
get a list of the enabled protocols.
  1. boolean
getNeedClientAuth()
configured to require client authentication
  1. javax.net.ssl.SSLSession
getSession()
get the SSLSession that is associated with this session.
  1. boolean
getUseClientMode()
returns true if the socket requires client mode in its first handshake.
  1. boolean
getWantClientAuth()
whether the socket would like the client to authenticate

Method Detail

getEnabledCipherSuites

  1. java.lang.String[] getEnabledCipherSuites( )
get the list of enabled cipher suites
Returns:
String[]

getEnabledProtocols

  1. java.lang.String[] getEnabledProtocols( )
get a list of the enabled protocols.
Returns:
String[]

getNeedClientAuth

  1. boolean getNeedClientAuth()
configured to require client authentication
Returns:
boolean

getSession

  1. javax.net.ssl.SSLSession getSession( )
get the SSLSession that is associated with this session.
Returns:
javax.net.ssl.SSLSession

getUseClientMode

  1. boolean getUseClientMode()
returns true if the socket requires client mode in its first handshake.
Returns:
boolean

getWantClientAuth

  1. boolean getWantClientAuth()
whether the socket would like the client to authenticate
Returns:
boolean