Class TrustStore

java.lang.Object
io.deephaven.ssl.config.TrustBase
io.deephaven.ssl.config.TrustStore
All Implemented Interfaces:
Trust

@Immutable public abstract class TrustStore extends TrustBase
The trust material from a trust store.
  • Constructor Details

    • TrustStore

      public TrustStore()
  • Method Details

    • of

      public static TrustStore of(String path, String password)
    • path

      public abstract String path()
      The trust store path.
    • password

      public abstract String password()
      The trust store password.
    • walk

      public final <T> T walk(Trust.Visitor<T> visitor)