GEODE-17: mark deprecated security configurations
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/a847c550 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/a847c550 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/a847c550 Branch: refs/heads/feature/GEODE-288 Commit: a847c550bfe3b3387f3c023ce56eee63d353c062 Parents: ddc3268 Author: Jinmei Liao <[email protected]> Authored: Tue Oct 25 10:00:50 2016 -0700 Committer: Jinmei Liao <[email protected]> Committed: Tue Oct 25 13:58:54 2016 -0700 ---------------------------------------------------------------------- .../apache/geode/distributed/ConfigurationProperties.java | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/a847c550/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java b/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java index 38bec6f..c58a398 100644 --- a/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java +++ b/geode-core/src/main/java/org/apache/geode/distributed/ConfigurationProperties.java @@ -1439,10 +1439,14 @@ public interface ConfigurationProperties { String SECURITY_PREFIX = "security-"; /** * The static String definition of the <i>"security-client-accessor"</i> property + * + * @deprecated since Geode 1.0, use security-manager */ String SECURITY_CLIENT_ACCESSOR = SECURITY_PREFIX + "client-accessor"; /** * The static String definition of the <i>"security-client-accessor-pp"</i> property + * + * @deprecated since Geode 1.0, use security-post-processor */ String SECURITY_CLIENT_ACCESSOR_PP = SECURITY_PREFIX + "client-accessor-pp"; /** @@ -1474,6 +1478,8 @@ public interface ConfigurationProperties { /** * The static String definition of the <i>"security-client-authenticator"</i> property + * + * @deprecated since Geode 1.0, use security-manager */ String SECURITY_CLIENT_AUTHENTICATOR = SECURITY_PREFIX + "client-authenticator"; /** @@ -1497,10 +1503,14 @@ public interface ConfigurationProperties { String SECURITY_LOG_LEVEL = SECURITY_PREFIX + "log-level"; /** * The static String definition of the <i>"security-peer-auth-init"</i> property + * + * @deprecated since Geode 1.0. use security-username and security-password */ String SECURITY_PEER_AUTH_INIT = SECURITY_PREFIX + "peer-auth-init"; /** * The static String definition of the <i>"security-peer-authenticator"</i> property + * + * @deprecated since Geode 1.0, use security-manager */ String SECURITY_PEER_AUTHENTICATOR = SECURITY_PREFIX + "peer-authenticator"; /**
