Interface TlsKeyManagersProviderConfig


public interface TlsKeyManagersProviderConfig
  • Method Details

    • type

      @WithDefault("system-property") TlsKeyManagersProviderType type()
      TLS key managers provider type. Available providers: * `none` - Use this provider if you don't want the client to present any certificates to the remote TLS host. * `system-property` - Provider checks the standard `javax.net.ssl.keyStore`, `javax.net.ssl.keyStorePassword`, and `javax.net.ssl.keyStoreType` properties defined by the https://docs.oracle.com/javase/8/docs/technotes/guides/security/jsse/JSSERefGuide.html[JSSE]. * `file-store` - Provider that loads the key store from a file.
    • fileStore

      Configuration of the file store provider.

      Used only if FILE_STORE type is chosen.