Package org.apache.ignite.client
Interface SslConfiguration
- All Known Implementing Classes:
SslConfigurationProperties
public interface SslConfiguration
Client SSL configuration.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
SSL configuration builder. -
Method Summary
Modifier and TypeMethodDescriptionstatic SslConfiguration.Builder
builder()
SSL configuration builder.ciphers()
List of ciphers that will be used to setup the SSL connection.boolean
enabled()
Whentrue
, an SSL/TLS connection will be established.@Nullable String
Keystore password that will be used to setup the SSL connection.@Nullable String
Keystore path that will be used to setup the SSL connection.@Nullable String
Truststore password that will be used to setup the SSL connection.@Nullable String
Truststore path that will be used to setup the SSL connection.
-
Method Details
-
enabled
boolean enabled()Whentrue
, an SSL/TLS connection will be established. -
ciphers
List of ciphers that will be used to setup the SSL connection. -
keyStorePath
Keystore path that will be used to setup the SSL connection. -
keyStorePassword
Keystore password that will be used to setup the SSL connection. -
trustStorePath
Truststore path that will be used to setup the SSL connection. -
trustStorePassword
Truststore password that will be used to setup the SSL connection. -
builder
SSL configuration builder.
-