Interface GrpcClientConfiguration.SslClientConfig

Enclosing interface:
GrpcClientConfiguration

public static interface GrpcClientConfiguration.SslClientConfig
Shared configuration for setting up client-side SSL.
  • Method Summary

    Modifier and Type
    Method
    Description
    The classpath path or file path to a server certificate or certificate chain in PEM format.
    key()
    The classpath path or file path to the corresponding certificate private key file in PEM format.
    An optional trust store which holds the certificate information of the certificates to trust The trust store can be either on classpath or in an external file.
  • Method Details

    • certificate

      Optional<Path> certificate()
      The classpath path or file path to a server certificate or certificate chain in PEM format.
    • key

      Optional<Path> key()
      The classpath path or file path to the corresponding certificate private key file in PEM format.
    • trustStore

      Optional<Path> trustStore()
      An optional trust store which holds the certificate information of the certificates to trust The trust store can be either on classpath or in an external file.