Use 'spring.boot.data.gemfire.*' prefix for all Spring Boot Data GemFire/Geode configuration properties.

This commit is contained in:
John Blum
2018-05-28 19:16:23 -07:00
parent 1f4faf2a97
commit 5d1dcb4b44
2 changed files with 3 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ import org.springframework.data.gemfire.config.annotation.support.AutoConfigured
public class SecurityAutoConfiguration {
public static final String SECURITY_CLOUD_ENVIRONMENT_POST_PROCESSOR_DISABLED_PROPERTY =
"spring.boot.data.geode.security.auth.environment.post-processor.disabled";
"spring.boot.data.gemfire.security.auth.environment.post-processor.disabled";
private static final String CLOUD_CACHE_PROPERTY_SOURCE_NAME = "cloudcache-security";

View File

@@ -85,7 +85,7 @@ import org.springframework.util.StringUtils;
public class SslAutoConfiguration {
public static final String SECURITY_SSL_ENVIRONMENT_POST_PROCESSOR_DISABLED_PROPERTY =
"spring.boot.data.geode.security.ssl.environment.post-processor.disabled";
"spring.boot.data.gemfire.security.ssl.environment.post-processor.disabled";
private static final String CURRENT_WORKING_DIRECTORY = System.getProperty("user.dir");
private static final String GEMFIRE_SSL_KEYSTORE_PROPERTY = "gemfire.ssl-keystore";
@@ -96,7 +96,7 @@ public class SslAutoConfiguration {
private static final String SSL_KEYSTORE_PROPERTY = "ssl-keystore";
private static final String SSL_TRUSTSTORE_PROPERTY = "ssl-truststore";
private static final String TRUSTED_KEYSTORE_FILENAME = "trusted.keystore";
private static final String TRUSTED_KEYSTORE_FILENAME_PROPERTY = "spring.data.gemfire.security.ssl.keystore.name";
private static final String TRUSTED_KEYSTORE_FILENAME_PROPERTY = "spring.boot.data.gemfire.security.ssl.keystore.name";
private static final String USER_HOME_DIRECTORY = System.getProperty("user.home");
private static final Logger logger = LoggerFactory.getLogger(SslAutoConfiguration.class);