Class PemKeyCertPair

java.lang.Object
com.here.sdk.maploader.remote.connection.PemKeyCertPair

public final class PemKeyCertPair extends Object

The structure below exactly match the corresponding gRPC PemKeyCertPair structure. A key/certificate pair in PEM format.

  • Field Details

    • privateKey

      @NonNull public String privateKey

      Server's private key in PEM format.

    • certChain

      @NonNull public String certChain

      Server's certificate chain in PEM format.

  • Constructor Details

    • PemKeyCertPair

      public PemKeyCertPair(@NonNull String privateKey, @NonNull String certChain)

      Creates a new instance.

      Parameters:
      privateKey -

      Server's private key in PEM format.

      certChain -

      Server's certificate chain in PEM format.