Interface TlsTrustManagersProviderConfig


public interface TlsTrustManagersProviderConfig
  • Method Details

    • type

      @WithDefault("system-property") TlsTrustManagersProviderType type()
      TLS trust managers provider type. Available providers: * `trust-all` - Use this provider to disable the validation of servers certificates and therefore trust all server certificates. * `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.