Uses of Class
com.hazelcast.config.rest.RestConfig.Ssl
Package
Description
This package contains the REST API configuration classes.
-
Uses of RestConfig.Ssl in com.hazelcast.config.rest
Modifier and TypeMethodDescriptionRestConfig.getSsl()
Gets the SSL configuration.RestConfig.Ssl.setCertificate
(String certificate) Set the location of the certificate in PEM format.RestConfig.Ssl.setCertificatePrivateKey
(String certificatePrivateKey) Set the location of the private key for the certificate in PEM format.RestConfig.Ssl.setCiphers
(String ciphers) Set the supported SSL ciphers.RestConfig.Ssl.setClientAuth
(RestConfig.Ssl.ClientAuth clientAuth) Set whether client authentication is not wanted ("none"), wanted ("want") or needed ("need").RestConfig.Ssl.setEnabled
(boolean enabled) Set whether to enable SSL support.RestConfig.Ssl.setEnabledProtocols
(String enabledProtocols) Set the enabled SSL protocols.RestConfig.Ssl.setKeyAlias
(String keyAlias) Set the alias that identifies the key in the key store.RestConfig.Ssl.setKeyPassword
(String keyPassword) Set the password used to access the key in the key store.RestConfig.Ssl.setKeyStore
(String keyStore) Set the path to the key store that holds the SSL certificate (typically a jks file).RestConfig.Ssl.setKeyStorePassword
(String keyStorePassword) Set the password used to access the key store.RestConfig.Ssl.setKeyStoreProvider
(String keyStoreProvider) RestConfig.Ssl.setKeyStoreType
(String keyStoreType) Set the type of the key store.RestConfig.Ssl.setProtocol
(String protocol) Set the SSL protocol to use.RestConfig.Ssl.setTrustCertificate
(String trustCertificate) Set the location of the trust certificate authority chain in PEM format.RestConfig.Ssl.setTrustCertificatePrivateKey
(String trustCertificatePrivateKey) Set the location of the private key for the trust certificate in PEM format.RestConfig.Ssl.setTrustStore
(String trustStore) Set the trust store that holds SSL certificates.RestConfig.Ssl.setTrustStorePassword
(String trustStorePassword) Set the password used to access the trust store.RestConfig.Ssl.setTrustStoreProvider
(String trustStoreProvider) Set the provider for the trust store.RestConfig.Ssl.setTrustStoreType
(String trustStoreType) Set the type of the trust store.Modifier and TypeMethodDescriptionRestConfig.setSsl
(RestConfig.Ssl ssl) Sets the SSL configuration.