Refactor the GemFireProperties class.

* Change normalizePropertyName(:String) factory method to be part of the public API.
* Remove Redis-based properties.
* Edit Javadoc.

Resolves #592.
This commit is contained in:
John Blum
2022-04-21 18:59:53 -07:00
parent 3ea14243ff
commit 35a6a4ee94

View File

@@ -100,10 +100,6 @@ public enum GemFireProperties {
NAME(ConfigurationProperties.NAME, String.class),
OFF_HEAP_MEMORY_SIZE(ConfigurationProperties.OFF_HEAP_MEMORY_SIZE, Integer.class),
REDUNDANCY_ZONE(ConfigurationProperties.REDUNDANCY_ZONE, String.class),
REDIS_ENABLED(ConfigurationProperties.REDIS_ENABLED, Boolean.class),
REDIS_BIND_ADDRESS(ConfigurationProperties.REDIS_BIND_ADDRESS, String.class),
REDIS_PASSWORD(ConfigurationProperties.REDIS_PASSWORD, String.class),
REDIS_PORT(ConfigurationProperties.REDIS_PORT, Integer.class, 0),
REMOTE_LOCATORS(ConfigurationProperties.REMOTE_LOCATORS, String.class),
REMOVE_UNRESPONSIVE_CLIENT(ConfigurationProperties.REMOVE_UNRESPONSIVE_CLIENT, Boolean.class, false),
SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS(ConfigurationProperties.SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS, String[].class),