From 35a6a4ee942fbf863dc1b296cc8c393da19870c8 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 21 Apr 2022 18:59:53 -0700 Subject: [PATCH] Refactor the GemFireProperties class. * Change normalizePropertyName(:String) factory method to be part of the public API. * Remove Redis-based properties. * Edit Javadoc. Resolves #592. --- .../org/springframework/data/gemfire/GemFireProperties.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java b/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java index 257e3a76..8184c891 100644 --- a/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java +++ b/spring-data-geode/src/main/java/org/springframework/data/gemfire/GemFireProperties.java @@ -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),