Class TlsOptionsHeaplet

  • All Implemented Interfaces:
    Heaplet

    public class TlsOptionsHeaplet
    extends GenericHeaplet
    Creates and initializes TLS options in a heap environment.

    The sslContextAlgorithm optional attribute used to set the SSL Context Algorithm for SSL/TLS connections, it defaults to TLS. See the JavaSE docs for the full list of supported values.

    The keyManager and trustManager optional attributes are referencing a list of KeyManager (and TrustManager respectively). They support singleton value (use a single reference) as well as multi-valued references (a list):

     
         "keyManager": "SingleKeyManagerReference",
         "trustManager": [ "RefOne", "RefTwo" ]
     
     

    The sslEnabledProtocols optional attribute specifies the protocol versions to be enabled for use on the connection.

    The sslCipherSuites optional attribute specifies cipher suite names used by the SSL connection.

    • Constructor Detail

      • TlsOptionsHeaplet

        public TlsOptionsHeaplet()
    • Method Detail