GEODE-1648: fix javadocs for "security-enabled-components"
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/80f8a140 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/80f8a140 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/80f8a140 Branch: refs/heads/feature/GEODE-420 Commit: 80f8a1408ac90ce9308ad09fa7be6c26b5976648 Parents: f7377ac Author: Kirk Lund <[email protected]> Authored: Mon Aug 15 12:53:58 2016 -0700 Committer: Kirk Lund <[email protected]> Committed: Mon Aug 15 13:48:09 2016 -0700 ---------------------------------------------------------------------- .../distributed/ConfigurationProperties.java | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/80f8a140/geode-core/src/main/java/com/gemstone/gemfire/distributed/ConfigurationProperties.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/ConfigurationProperties.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/ConfigurationProperties.java index 3157020..5c3a282 100644 --- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/ConfigurationProperties.java +++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/ConfigurationProperties.java @@ -1227,12 +1227,19 @@ public interface ConfigurationProperties { */ String SECURITY_PEER_VERIFY_MEMBER_TIMEOUT = SECURITY_PREFIX + "peer-verifymember-timeout"; /** - * The static String definition of the <i>"ssl-enabled-components"</i> property - * <a name="ssl-enabled-components"/a></p> - * <U>Description</U>: This setting is a comma delimited fields which works in conjunction with the {@link #SECURITY_PREFIX} properties. - * This property will determine which components will use SSL for their communications.</p> - * <U>Options</U>: "all","server","cluster","gateway","http","jmx" -- As described {@link SecurableComponents} - * <U>Since</U>: Geode 1.0 + * The static String definition of the <i>"security-enabled-components"</i> property + * <a name="security-enabled-components"/> + * <p> + * <u>Description</u>: This setting is a comma delimited list of + * {@link org.apache.geode.security.SecurableComponents} specifying which components will be secured + * by a {@link #SECURITY_MANAGER}. + * <p> + * This property has no effect unless a {@link #SECURITY_MANAGER} is + * specified. + * <p> + * <u>Options</u>: "all","server","cluster","gateway","http","jmx" + * <p> + * <u>Since</u>: Geode 1.0 */ String SECURITY_ENABLED_COMPONENTS = SECURITY_PREFIX + "enabled-components"; /**
