Interface SSLContext


public interface SSLContext
SSL information available for an HTTP connection.
  • 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