Class TrustManagerHeaplet

java.lang.Object
org.forgerock.openig.heap.GenericHeaplet
org.forgerock.openig.security.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 Details

    • TrustManagerHeaplet

      public TrustManagerHeaplet()
      Deprecated.
  • Method Details

    • 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.