Class HttpSslContextConfig

java.lang.Object
io.openlineage.client.transports.HttpSslContextConfig
All Implemented Interfaces:
MergeConfig<HttpSslContextConfig>

public final class HttpSslContextConfig extends Object implements MergeConfig<HttpSslContextConfig>
  • Constructor Details

    • HttpSslContextConfig

      public HttpSslContextConfig()
    • HttpSslContextConfig

      public HttpSslContextConfig(String storePassword, String keyPassword, @Nullable String keyStoreType, String keyStorePath)
  • Method Details

    • mergeWithNonNull

      public HttpSslContextConfig mergeWithNonNull(HttpSslContextConfig other)
      Description copied from interface: MergeConfig
      Method to create new config class based on current instance and non-null argument value. In most cases, implementation needs to create a new instance of T, while merging all the properties.
      Specified by:
      mergeWithNonNull in interface MergeConfig<HttpSslContextConfig>
      Parameters:
      other - overwrite value
      Returns:
      merged config entry
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getStorePassword

      public String getStorePassword()
    • setStorePassword

      public void setStorePassword(String storePassword)
    • getKeyPassword

      public String getKeyPassword()
    • setKeyPassword

      public void setKeyPassword(String keyPassword)
    • getKeyStoreType

      @Nullable public String getKeyStoreType()
    • setKeyStoreType

      public void setKeyStoreType(@Nullable String keyStoreType)
    • getKeyStorePath

      public String getKeyStorePath()
    • setKeyStorePath

      public void setKeyStorePath(String keyStorePath)