Class SslConfigurationProperties

java.lang.Object
org.apache.ignite.SslConfigurationProperties
All Implemented Interfaces:
SslConfiguration

public class SslConfigurationProperties extends Object implements SslConfiguration
Describes properties for SSL configuration.
  • Constructor Details

    • SslConfigurationProperties

      public SslConfigurationProperties()
  • Method Details

    • enabled

      public boolean enabled()
      Description copied from interface: SslConfiguration
      When true, an SSL/TLS connection will be established.
      Specified by:
      enabled in interface SslConfiguration
    • ciphers

      public Iterable<String> ciphers()
      Description copied from interface: SslConfiguration
      List of ciphers that will be used to setup the SSL connection.
      Specified by:
      ciphers in interface SslConfiguration
    • keyStorePath

      public String keyStorePath()
      Description copied from interface: SslConfiguration
      Keystore path that will be used to setup the SSL connection.
      Specified by:
      keyStorePath in interface SslConfiguration
    • keyStorePassword

      public String keyStorePassword()
      Description copied from interface: SslConfiguration
      Keystore password that will be used to setup the SSL connection.
      Specified by:
      keyStorePassword in interface SslConfiguration
    • trustStorePath

      public String trustStorePath()
      Description copied from interface: SslConfiguration
      Truststore path that will be used to setup the SSL connection.
      Specified by:
      trustStorePath in interface SslConfiguration
    • trustStorePassword

      public String trustStorePassword()
      Description copied from interface: SslConfiguration
      Truststore password that will be used to setup the SSL connection.
      Specified by:
      trustStorePassword in interface SslConfiguration
    • setEnabled

      public void setEnabled(Boolean enabled)
    • setCiphers

      public void setCiphers(Iterable<String> ciphers)
    • setKeyStorePath

      public void setKeyStorePath(String keyStorePath)
    • setKeyStorePassword

      public void setKeyStorePassword(String keyStorePassword)
    • setTrustStorePath

      public void setTrustStorePath(String trustStorePath)
    • setTrustStorePassword

      public void setTrustStorePassword(String trustStorePassword)