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 classSSL configuration builder. -
Method Summary
Modifier and TypeMethodDescriptionstatic SslConfiguration.Builderbuilder()SSL configuration builder.ciphers()List of ciphers that will be used to setup the SSL connection.booleanenabled()If set totruethen the SSL connection will be used to interact with Ignite 3 node.@Nullable StringKeystore password that will be used to setup the SSL connection.@Nullable StringKeystore path that will be used to setup the SSL connection.@Nullable StringTruststore password that will be used to setup the SSL connection.@Nullable StringTruststore path that will be used to setup the SSL connection.
-
Method Details
-
enabled
boolean enabled()If set totruethen the SSL connection will be used to interact with Ignite 3 node. -
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.
-