Class SslProperties
java.lang.Object
org.springframework.geode.boot.autoconfigure.configuration.support.SslProperties
Spring Boot
ConfigurationProperties
used to configure Apache Geode Socket layer SSL.
The SSL configuration is used to secure communications and data in motion between clients and servers
as well as between peers in a cluster.
The configuration Properties
are based on well-known, documented Spring Data for Apache Geode (SDG)
Properties
.- Since:
- 1.0.0
- See Also:
-
Properties
Cache
ConfigurationProperties
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
static class
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionString[]
org.springframework.data.gemfire.config.annotation.EnableSsl.Component[]
String[]
boolean
boolean
void
setCiphers
(String[] ciphers) void
setComponents
(org.springframework.data.gemfire.config.annotation.EnableSsl.Component[] components) void
setKeystore
(String keystore) void
setProtocols
(String[] protocols) void
setRequireAuthentication
(boolean requireAuthentication) void
setTruststore
(String truststore) void
setWebRequireAuthentication
(boolean webRequireAuthentication)
-
Constructor Details
-
SslProperties
public SslProperties()
-
-
Method Details
-
getCertificate
-
getCiphers
-
setCiphers
-
getComponents
public org.springframework.data.gemfire.config.annotation.EnableSsl.Component[] getComponents() -
setComponents
public void setComponents(org.springframework.data.gemfire.config.annotation.EnableSsl.Component[] components) -
getKeystore
-
setKeystore
-
getKeystoreConfig
-
getProtocols
-
setProtocols
-
isRequireAuthentication
public boolean isRequireAuthentication() -
setRequireAuthentication
public void setRequireAuthentication(boolean requireAuthentication) -
getTruststore
-
setTruststore
-
getTruststoreConfig
-
isWebRequireAuthentication
public boolean isWebRequireAuthentication() -
setWebRequireAuthentication
public void setWebRequireAuthentication(boolean webRequireAuthentication)
-