From 6ce5f4f211ca2cb270fc0bbb2424c950e03a9c10 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 25 Mar 2020 08:35:23 -0700 Subject: [PATCH] DATAGEODE-312 - Add support for Apache Geode 'security-auth-token-enabled-components' (configuration) property. This Geode property was introduced in 1.12.0. --- .../org/springframework/data/gemfire/GemFireProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 151bf950..bffb8fea 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 @@ -103,7 +103,7 @@ public enum GemFireProperties { 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), + SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS(ConfigurationProperties.SECURITY_AUTH_TOKEN_ENABLED_COMPONENTS, String[].class), SECURITY_CLIENT_AUTH_INIT(ConfigurationProperties.SECURITY_CLIENT_AUTH_INIT, String.class), SECURITY_LOG_FILE(ConfigurationProperties.SECURITY_LOG_FILE, File.class), SECURITY_LOG_LEVEL(ConfigurationProperties.SECURITY_LOG_LEVEL, String.class, "config"),