Class TrustManagerHeaplet

  • All Implemented Interfaces:
    Heaplet

    @Deprecated(since="2023.2")
    public class TrustManagerHeaplet
    extends GenericHeaplet
    Deprecated.
    Represents an SSL Java TrustManager.
         
         {
             "name": "MyTrustManager",
             "type": "TrustManager",
             "config": {
                 "keystore": "MyKeyStore",
                 "alg": "SunX509"
             }
         }
         
     
    • keystore: Reference a KeyStore heap object (string, required).
    • alg: Trust manager algorithm (defaults to platform's default type) (string, optional).
    Since:
    3.1
    • Constructor Detail

      • TrustManagerHeaplet

        public TrustManagerHeaplet()
        Deprecated.
    • Method Detail

      • create

        public Object create()
                      throws HeapException
        Deprecated.
        Description copied from class: GenericHeaplet
        Called to request the heaplet create an object. Called by Heaplet.create(Name, JsonValue, Heap) after initializing the protected field members. Implementations should parse configuration but not acquire resources, start threads, or log any initialization messages. These tasks should be performed by the GenericHeaplet.start() method.
        Specified by:
        create in class GenericHeaplet
        Returns:
        The created object.
        Throws:
        HeapException - if an exception occurred during creation of the heap object or any of its dependencies.