You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by hi...@apache.org on 2016/06/15 16:42:35 UTC

[54/97] [abbrv] incubator-geode git commit: GEODE-1377: Updating JavaDocs to point to the correct property definitions

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/cc249d5d/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/DistributionConfig.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/DistributionConfig.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/DistributionConfig.java
index 8707a39..9c5213f 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/DistributionConfig.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/DistributionConfig.java
@@ -38,15 +38,12 @@ import static com.gemstone.gemfire.distributed.DistributedSystemConfigProperties
  * various GemFire distribution configuration properties.  The
  * interface also provides constants for the names of properties and
  * their default values.
- *
- * <P>
- *
- * Decriptions of these properties can be found <a
- * href="../DistributedSystem.html#configuration">here</a>.
+ * <p>
+ * <p>
+ * <p>
+ * Descriptions of these properties can be found {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties}.
  *
  * @see com.gemstone.gemfire.internal.Config
- *
- *
  * @since GemFire 2.1
  */
 public interface DistributionConfig extends Config, LogConfig {
@@ -54,8 +51,7 @@ public interface DistributionConfig extends Config, LogConfig {
   ////////////////////  Instance Methods  ////////////////////
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#name">"name"</a> property
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#NAME} property
    * Gets the member's name.
    * A name is optional and by default empty.
    * If set it must be unique in the ds.
@@ -64,7 +60,7 @@ public interface DistributionConfig extends Config, LogConfig {
    *
    * @return the system's name.
    */
-  @ConfigAttributeGetter(name = NAME_NAME)
+  @ConfigAttributeGetter(name = NAME)
   String getName();
 
   /**
@@ -76,7 +72,7 @@ public interface DistributionConfig extends Config, LogConfig {
    * @throws com.gemstone.gemfire.GemFireIOException    if the set failure is caused by an error
    *                                                    when writing to the system's configuration file.
    */
-  @ConfigAttributeSetter(name = NAME_NAME)
+  @ConfigAttributeSetter(name = NAME)
   void setName(String value);
 
   /**
@@ -92,209 +88,196 @@ public interface DistributionConfig extends Config, LogConfig {
   String DEFAULT_NAME = "";
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#mcast-port">"mcast-port"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}</a>
    * property
    */
   @ConfigAttributeGetter(name = MCAST_PORT_NAME)
   int getMcastPort();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#mcast-port">"mcast-port"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_PORT_NAME)
   void setMcastPort(int value);
 
   /**
-   * The default value of the "mcast-port" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT} property
    */
   int DEFAULT_MCAST_PORT = 0;
 
   /**
-   * The minimum mcastPort.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_MCAST_PORT = 0;
 
   /**
-   * The maximum mcastPort.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}.
    * <p> Actual value of this constant is <code>65535</code>.
    */
   int MAX_MCAST_PORT = 65535;
 
   /**
-   * The name of the "mcast-port" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_MCAST_PORT, max = MAX_MCAST_PORT)
   String MCAST_PORT_NAME = MCAST_PORT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#tcp-port">"tcp-port"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}
    * property
    */
   @ConfigAttributeGetter(name = TCP_PORT)
   int getTcpPort();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#tcp-port">"tcp-port"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}
    * property
    */
   @ConfigAttributeSetter(name = TCP_PORT)
   void setTcpPort(int value);
 
   /**
-   * The default value of the "tcpPort" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT} property
    */
   int DEFAULT_TCP_PORT = 0;
 
   /**
-   * The minimum tcpPort.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_TCP_PORT = 0;
 
   /**
-   * The maximum tcpPort.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}.
    * <p> Actual value of this constant is <code>65535</code>.
    */
   int MAX_TCP_PORT = 65535;
 
   /**
-   * The name of the "tcpPort" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_TCP_PORT, max = MAX_TCP_PORT)
   String TCP_PORT_NAME = TCP_PORT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#mcast-address">"mcast-address"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_ADDRESS)
   InetAddress getMcastAddress();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#mcast-address">"mcast-address"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_ADDRESS)
   void setMcastAddress(InetAddress value);
 
   /**
-   * The name of the "mcastAddress" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS} property
    */
   @ConfigAttribute(type = InetAddress.class)
   String MCAST_ADDRESS_NAME = MCAST_ADDRESS;
 
   /**
-   * The default value of the "mcastAddress" property.
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS} property.
    * Current value is <code>239.192.81.1</code>
    */
   InetAddress DEFAULT_MCAST_ADDRESS = AbstractDistributionConfig._getDefaultMcastAddress();
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#mcast-ttl">"mcast-ttl"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_TTL)
   int getMcastTtl();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#mcast-ttl">"mcast-ttl"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_TTL)
   void setMcastTtl(int value);
 
   /**
-   * The default value of the "mcastTtl" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL} property
    */
   int DEFAULT_MCAST_TTL = 32;
 
   /**
-   * The minimum mcastTtl.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_MCAST_TTL = 0;
 
   /**
-   * The maximum mcastTtl.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}.
    * <p> Actual value of this constant is <code>255</code>.
    */
   int MAX_MCAST_TTL = 255;
 
   /**
-   * The name of the "mcastTtl" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_MCAST_TTL, max = MAX_MCAST_TTL)
   String MCAST_TTL_NAME = MCAST_TTL;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#bind-address">"bind-address"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS}
    * property
    */
   @ConfigAttributeGetter(name = BIND_ADDRESS)
   String getBindAddress();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#bind-address">"bind-address"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS}
    * property
    */
   @ConfigAttributeSetter(name = BIND_ADDRESS)
   void setBindAddress(String value);
 
   /**
-   * The name of the "bindAddress" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS} property
    */
   @ConfigAttribute(type = String.class)
   String BIND_ADDRESS_NAME = BIND_ADDRESS;
 
   /**
-   * The default value of the "bindAddress" property.
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS} property.
    * Current value is an empty string <code>""</code>
    */
   String DEFAULT_BIND_ADDRESS = "";
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#server-bind-address">"server-bind-address"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS}
    * property
    */
   @ConfigAttributeGetter(name = SERVER_BIND_ADDRESS)
   String getServerBindAddress();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#server-bind-address">"server-bind-address"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS}
    * property
    */
   @ConfigAttributeSetter(name = SERVER_BIND_ADDRESS)
   void setServerBindAddress(String value);
 
   /**
-   * The name of the "serverBindAddress" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS} property
    */
   @ConfigAttribute(type = String.class)
   String SERVER_BIND_ADDRESS_NAME = SERVER_BIND_ADDRESS;
 
   /**
-   * The default value of the "serverBindAddress" property.
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS} property.
    * Current value is an empty string <code>""</code>
    */
   String DEFAULT_SERVER_BIND_ADDRESS = "";
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#locators">"locators"</a> property
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOCATORS} property
    */
   @ConfigAttributeGetter(name = LOCATORS)
   String getLocators();
@@ -316,13 +299,13 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLocators(String value);
 
   /**
-   * The name of the "locators" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOCATORS} property
    */
   @ConfigAttribute(type = String.class)
   String LOCATORS_NAME = LOCATORS;
 
   /**
-   * The default value of the "locators" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOCATORS} property
    */
   String DEFAULT_LOCATORS = "";
 
@@ -342,14 +325,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLocatorWaitTime(int seconds);
 
   /**
-   * returns the value of the <a href="../DistribytedSystem.html#start-locator">"start-locator"
-   * </a> property
+   * returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property
    */
   @ConfigAttributeGetter(name = START_LOCATOR)
   String getStartLocator();
 
   /**
-   * Sets the start-locator property.  This is a string in the form
+   * Sets the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property.
+   * This is a string in the form
    * bindAddress[port] and, if set, tells the distributed system to start
    * a locator prior to connecting
    *
@@ -359,18 +342,17 @@ public interface DistributionConfig extends Config, LogConfig {
   void setStartLocator(String value);
 
   /**
-   * The name of the "start-locator" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property
    */
   @ConfigAttribute(type = String.class)
   String START_LOCATOR_NAME = START_LOCATOR;
   /**
-   * The default value of the "start-locator" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property
    */
   String DEFAULT_START_LOCATOR = "";
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#deploy-working-dir">"deploy-working-dir"</a> property
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DEPLOY_WORKING_DIR} property
    */
   @ConfigAttributeGetter(name = DEPLOY_WORKING_DIR)
   File getDeployWorkingDir();
@@ -387,7 +369,7 @@ public interface DistributionConfig extends Config, LogConfig {
   void setDeployWorkingDir(File value);
 
   /**
-   * The name of the "deploy-working-dir" property.
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DEPLOY_WORKING_DIR} property.
    */
   @ConfigAttribute(type = File.class)
   String DEPLOY_WORKING_DIR_NAME = DEPLOY_WORKING_DIR;
@@ -399,8 +381,7 @@ public interface DistributionConfig extends Config, LogConfig {
   File DEFAULT_DEPLOY_WORKING_DIR = new File(".");
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#user-command-packages">"user-command-packages"</a> property
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USER_COMMAND_PACKAGES} property
    */
   @ConfigAttributeGetter(name = USER_COMMAND_PACKAGES)
   String getUserCommandPackages();
@@ -417,19 +398,18 @@ public interface DistributionConfig extends Config, LogConfig {
   void setUserCommandPackages(String value);
 
   /**
-   * The name of the "user-command-packages" property.
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USER_COMMAND_PACKAGES} property.
    */
   @ConfigAttribute(type = String.class)
   String USER_COMMAND_PACKAGES_NAME = USER_COMMAND_PACKAGES;
 
   /**
-   * The default value of the "user-command-packages" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USER_COMMAND_PACKAGES} property
    */
   String DEFAULT_USER_COMMAND_PACKAGES = "";
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#log-file">"log-file"</a> property
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE} property
    *
    * @return <code>null</code> if logging information goes to standard
    * out
@@ -452,21 +432,20 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLogFile(File value);
 
   /**
-   * The name of the "logFile" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE} property
    */
   @ConfigAttribute(type = File.class)
   String LOG_FILE_NAME = LOG_FILE;
 
   /**
-   * The default log file.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE}.
    * <p> Actual value of this constant is <code>""</code> which directs
    * log message to standard output.
    */
   File DEFAULT_LOG_FILE = new File("");
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#log-level">"log-level"</a> property
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL} property
    *
    * @see com.gemstone.gemfire.internal.logging.LogWriterImpl
    */
@@ -474,8 +453,7 @@ public interface DistributionConfig extends Config, LogConfig {
   int getLogLevel();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#log-level">"log-level"</a> property
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL} property
    *
    * @see com.gemstone.gemfire.internal.logging.LogWriterImpl
    */
@@ -483,93 +461,90 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLogLevel(int value);
 
   /**
-   * The default log level.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL}.
    * <p> Actual value of this constant is {@link InternalLogWriter#CONFIG_LEVEL}.
    */
   int DEFAULT_LOG_LEVEL = InternalLogWriter.CONFIG_LEVEL;
   /**
-   * The minimum log level.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL}.
    * <p> Actual value of this constant is {@link InternalLogWriter#ALL_LEVEL}.
    */
   int MIN_LOG_LEVEL = InternalLogWriter.ALL_LEVEL;
   /**
-   * The maximum log level.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL}.
    * <p> Actual value of this constant is {@link InternalLogWriter#NONE_LEVEL}.
    */
   int MAX_LOG_LEVEL = InternalLogWriter.NONE_LEVEL;
 
   /**
-   * The name of the "logLevel" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL} property
    */
   // type is String because the config file contains "config", "debug", "fine" etc, not a code, but the setter/getter accepts int
   @ConfigAttribute(type = String.class)
   String LOG_LEVEL_NAME = LOG_LEVEL;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#statistic-sampling-enabled">"statistic-sampling-enabled"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED}
    * property
    */
   @ConfigAttributeGetter(name = STATISTIC_SAMPLING_ENABLED)
   boolean getStatisticSamplingEnabled();
 
   /**
-   * Sets StatisticSamplingEnabled
+   * Sets {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED}
    */
   @ConfigAttributeSetter(name = STATISTIC_SAMPLING_ENABLED)
   void setStatisticSamplingEnabled(boolean newValue);
 
   /**
-   * The name of the "statisticSamplingEnabled" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED} property
    */
   @ConfigAttribute(type = Boolean.class)
   String STATISTIC_SAMPLING_ENABLED_NAME = STATISTIC_SAMPLING_ENABLED;
 
   /**
-   * The default value of the "statisticSamplingEnabled" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED} property
    */
   boolean DEFAULT_STATISTIC_SAMPLING_ENABLED = true;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#statistic-sample-rate">"statistic-sample-rate"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}
    * property
    */
   @ConfigAttributeGetter(name = STATISTIC_SAMPLE_RATE)
   int getStatisticSampleRate();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#statistic-sample-rate">"statistic-sample-rate"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}
    * property
    */
   @ConfigAttributeSetter(name = STATISTIC_SAMPLE_RATE)
   void setStatisticSampleRate(int value);
 
   /**
-   * The default statistic sample rate.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}.
    * <p> Actual value of this constant is <code>1000</code> milliseconds.
    */
   int DEFAULT_STATISTIC_SAMPLE_RATE = 1000;
   /**
-   * The minimum statistic sample rate.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}.
    * <p> Actual value of this constant is <code>100</code> milliseconds.
    */
   int MIN_STATISTIC_SAMPLE_RATE = 100;
   /**
-   * The maximum statistic sample rate.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}.
    * <p> Actual value of this constant is <code>60000</code> milliseconds.
    */
   int MAX_STATISTIC_SAMPLE_RATE = 60000;
 
   /**
-   * The name of the "statisticSampleRate" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_STATISTIC_SAMPLE_RATE, max = MAX_STATISTIC_SAMPLE_RATE)
   String STATISTIC_SAMPLE_RATE_NAME = STATISTIC_SAMPLE_RATE;
 
   /**
-   * Returns the value of the <a href="../DistributedSystem.html#statistic-archive-file">"statistic-archive-file"</a> property.
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property.
    *
    * @return <code>null</code> if no file was specified
    */
@@ -577,62 +552,58 @@ public interface DistributionConfig extends Config, LogConfig {
   File getStatisticArchiveFile();
 
   /**
-   * Sets the value of the <a href="../DistributedSystem.html#statistic-archive-file">"statistic-archive-file"</a> property.
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property.
    */
   @ConfigAttributeSetter(name = STATISTIC_ARCHIVE_FILE)
   void setStatisticArchiveFile(File value);
 
   /**
-   * The name of the "statisticArchiveFile" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property
    */
   @ConfigAttribute(type = File.class)
   String STATISTIC_ARCHIVE_FILE_NAME = STATISTIC_ARCHIVE_FILE;
 
   /**
-   * The default statistic archive file.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE}.
    * <p> Actual value of this constant is <code>""</code> which
    * causes no archive file to be created.
    */
   File DEFAULT_STATISTIC_ARCHIVE_FILE = new File(""); // fix for bug 29786
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cache-xml-file">"cache-xml-file"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE}
    * property
    */
   @ConfigAttributeGetter(name = CACHE_XML_FILE)
   File getCacheXmlFile();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cache-xml-file">"cache-xml-file"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE}
    * property
    */
   @ConfigAttributeSetter(name = CACHE_XML_FILE)
   void setCacheXmlFile(File value);
 
   /**
-   * The name of the "cacheXmlFile" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE} property
    */
   @ConfigAttribute(type = File.class)
   String CACHE_XML_FILE_NAME = CACHE_XML_FILE;
 
   /**
-   * The default value of the "cacheXmlFile" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE} property
    */
   File DEFAULT_CACHE_XML_FILE = new File("cache.xml");
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#ack-wait-threshold">"ack-wait-threshold"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}
    * property
    */
   @ConfigAttributeGetter(name = ACK_WAIT_THRESHOLD)
   int getAckWaitThreshold();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#ack-wait-threshold">"ack-wait-threshold"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}
    * property
    * Setting this value too low will cause spurious alerts.
    */
@@ -640,37 +611,35 @@ public interface DistributionConfig extends Config, LogConfig {
   void setAckWaitThreshold(int newThreshold);
 
   /**
-   * The default AckWaitThreshold.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}.
    * <p> Actual value of this constant is <code>15</code> seconds.
    */
   int DEFAULT_ACK_WAIT_THRESHOLD = 15;
   /**
-   * The minimum AckWaitThreshold.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}.
    * <p> Actual value of this constant is <code>1</code> second.
    */
   int MIN_ACK_WAIT_THRESHOLD = 1;
   /**
-   * The maximum AckWaitThreshold.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}.
    * <p> Actual value of this constant is <code>MAX_INT</code> seconds.
    */
   int MAX_ACK_WAIT_THRESHOLD = Integer.MAX_VALUE;
   /**
-   * The name of the "ackWaitThreshold" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_ACK_WAIT_THRESHOLD)
   String ACK_WAIT_THRESHOLD_NAME = ACK_WAIT_THRESHOLD;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#ack-severe-alert-threshold">"ack-severe-alert-threshold"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}
    * property
    */
   @ConfigAttributeGetter(name = ACK_SEVERE_ALERT_THRESHOLD)
   int getAckSevereAlertThreshold();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#ack-severe-alert-threshold">"ack-severe-alert-threshold"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}
    * property
    * Setting this value too low will cause spurious forced disconnects.
    */
@@ -678,183 +647,174 @@ public interface DistributionConfig extends Config, LogConfig {
   void setAckSevereAlertThreshold(int newThreshold);
 
   /**
-   * The default ackSevereAlertThreshold.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}.
    * <p> Actual value of this constant is <code>0</code> seconds, which
    * turns off shunning.
    */
   int DEFAULT_ACK_SEVERE_ALERT_THRESHOLD = 0;
   /**
-   * The minimum ackSevereAlertThreshold.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}.
    * <p> Actual value of this constant is <code>0</code> second,
    * which turns off shunning.
    */
   int MIN_ACK_SEVERE_ALERT_THRESHOLD = 0;
   /**
-   * The maximum ackSevereAlertThreshold.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}.
    * <p> Actual value of this constant is <code>MAX_INT</code> seconds.
    */
   int MAX_ACK_SEVERE_ALERT_THRESHOLD = Integer.MAX_VALUE;
   /**
-   * The name of the "ackSevereAlertThreshold" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_ACK_SEVERE_ALERT_THRESHOLD)
   String ACK_SEVERE_ALERT_THRESHOLD_NAME = ACK_SEVERE_ALERT_THRESHOLD;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#archive-file-size-limit">"archive-file-size-limit"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = ARCHIVE_FILE_SIZE_LIMIT)
   int getArchiveFileSizeLimit();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#archive-file-size-limit">"archive-file-size-limit"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = ARCHIVE_FILE_SIZE_LIMIT)
   void setArchiveFileSizeLimit(int value);
 
   /**
-   * The default statistic archive file size limit.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_ARCHIVE_FILE_SIZE_LIMIT = 0;
   /**
-   * The minimum statistic archive file size limit.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_ARCHIVE_FILE_SIZE_LIMIT = 0;
   /**
-   * The maximum statistic archive file size limit.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>1000000</code> megabytes.
    */
   int MAX_ARCHIVE_FILE_SIZE_LIMIT = 1000000;
 
   /**
-   * The name of the "ArchiveFileSizeLimit" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_ARCHIVE_FILE_SIZE_LIMIT, max = MAX_ARCHIVE_FILE_SIZE_LIMIT)
   String ARCHIVE_FILE_SIZE_LIMIT_NAME = ARCHIVE_FILE_SIZE_LIMIT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#archive-disk-space-limit">"archive-disk-space-limit"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = ARCHIVE_DISK_SPACE_LIMIT)
   int getArchiveDiskSpaceLimit();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#archive-disk-space-limit">"archive-disk-space-limit"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = ARCHIVE_DISK_SPACE_LIMIT)
   void setArchiveDiskSpaceLimit(int value);
 
   /**
-   * The default archive disk space limit.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_ARCHIVE_DISK_SPACE_LIMIT = 0;
   /**
-   * The minimum archive disk space limit.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_ARCHIVE_DISK_SPACE_LIMIT = 0;
   /**
-   * The maximum archive disk space limit.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>1000000</code> megabytes.
    */
   int MAX_ARCHIVE_DISK_SPACE_LIMIT = 1000000;
 
   /**
-   * The name of the "ArchiveDiskSpaceLimit" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_ARCHIVE_DISK_SPACE_LIMIT, max = MAX_ARCHIVE_DISK_SPACE_LIMIT)
   String ARCHIVE_DISK_SPACE_LIMIT_NAME = ARCHIVE_DISK_SPACE_LIMIT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#log-file-size-limit">"log-file-size-limit"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = LOG_FILE_SIZE_LIMIT)
   int getLogFileSizeLimit();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#log-file-size-limit">"log-file-size-limit"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = LOG_FILE_SIZE_LIMIT)
   void setLogFileSizeLimit(int value);
 
   /**
-   * The default log file size limit.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_LOG_FILE_SIZE_LIMIT = 0;
   /**
-   * The minimum log file size limit.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_LOG_FILE_SIZE_LIMIT = 0;
   /**
-   * The maximum log file size limit.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>1000000</code> megabytes.
    */
   int MAX_LOG_FILE_SIZE_LIMIT = 1000000;
 
   /**
-   * The name of the "LogFileSizeLimit" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_LOG_FILE_SIZE_LIMIT, max = MAX_LOG_FILE_SIZE_LIMIT)
   String LOG_FILE_SIZE_LIMIT_NAME = LOG_FILE_SIZE_LIMIT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#log-disk-space-limit">"log-disk-space-limit"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = LOG_DISK_SPACE_LIMIT)
   int getLogDiskSpaceLimit();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#log-disk-space-limit">"log-disk-space-limit"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = LOG_DISK_SPACE_LIMIT)
   void setLogDiskSpaceLimit(int value);
 
   /**
-   * The default log disk space limit.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_LOG_DISK_SPACE_LIMIT = 0;
   /**
-   * The minimum log disk space limit.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_LOG_DISK_SPACE_LIMIT = 0;
   /**
-   * The maximum log disk space limit.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>1000000</code> megabytes.
    */
   int MAX_LOG_DISK_SPACE_LIMIT = 1000000;
 
   /**
-   * The name of the "LogDiskSpaceLimit" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_LOG_DISK_SPACE_LIMIT, max = MAX_LOG_DISK_SPACE_LIMIT)
   String LOG_DISK_SPACE_LIMIT_NAME = LOG_DISK_SPACE_LIMIT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#ssl-enabled">"ssl-enabled"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLEnabled} instead.
@@ -863,7 +823,7 @@ public interface DistributionConfig extends Config, LogConfig {
   boolean getSSLEnabled();
 
   /**
-   * The default ssl-enabled state.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED} state.
    * <p> Actual value of this constant is <code>false</code>.
    *
    * @deprecated as of 8.0 use {@link #DEFAULT_CLUSTER_SSL_ENABLED} instead.
@@ -871,7 +831,7 @@ public interface DistributionConfig extends Config, LogConfig {
   boolean DEFAULT_SSL_ENABLED = false;
 
   /**
-   * The name of the "SSLEnabled" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_ENABLED_NAME} instead.
    */
@@ -879,8 +839,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_ENABLED_NAME = SSL_ENABLED;
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#ssl-enabled">"ssl-enabled"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLEnabled} instead.
@@ -889,8 +848,7 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLEnabled(boolean enabled);
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#ssl-protocols">"ssl-protocols"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLProtocols} instead.
@@ -899,8 +857,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String getSSLProtocols();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#ssl-protocols">"ssl-protocols"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLProtocols} instead.
@@ -909,14 +866,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLProtocols(String protocols);
 
   /**
-   * The default ssl-protocols value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS} value.
    * <p> Actual value of this constant is <code>any</code>.
    *
    * @deprecated as of 8.0 use {@link #DEFAULT_CLUSTER_SSL_PROTOCOLS} instead.
    */
   String DEFAULT_SSL_PROTOCOLS = "any";
   /**
-   * The name of the "SSLProtocols" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_PROTOCOLS_NAME} instead.
    */
@@ -924,8 +881,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_PROTOCOLS_NAME = SSL_PROTOCOLS;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#ssl-ciphers">"ssl-ciphers"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLCiphers} instead.
@@ -934,8 +890,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String getSSLCiphers();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#ssl-ciphers">"ssl-ciphers"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLCiphers} instead.
@@ -944,14 +899,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLCiphers(String ciphers);
 
   /**
-   * The default ssl-ciphers value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS} value.
    * <p> Actual value of this constant is <code>any</code>.
    *
    * @deprecated as of 8.0 use {@link #DEFAULT_CLUSTER_SSL_CIPHERS} instead.
    */
   String DEFAULT_SSL_CIPHERS = "any";
   /**
-   * The name of the "SSLCiphers" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_CIPHERS_NAME} instead.
    */
@@ -959,8 +914,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_CIPHERS_NAME = SSL_CIPHERS;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#ssl-require-authentication">"ssl-require-authentication"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLRequireAuthentication} instead.
@@ -969,8 +923,7 @@ public interface DistributionConfig extends Config, LogConfig {
   boolean getSSLRequireAuthentication();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#ssl-require-authentication">"ssl-require-authentication"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLRequireAuthentication} instead.
@@ -979,14 +932,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLRequireAuthentication(boolean enabled);
 
   /**
-   * The default ssl-require-authentication value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION} value.
    * <p> Actual value of this constant is <code>true</code>.
    *
    * @deprecated as of 8.0 use {@link #DEFAULT_CLUSTER_SSL_REQUIRE_AUTHENTICATION} instead.
    */
   boolean DEFAULT_SSL_REQUIRE_AUTHENTICATION = true;
   /**
-   * The name of the "SSLRequireAuthentication" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_REQUIRE_AUTHENTICATION_NAME} instead.
    */
@@ -994,249 +947,231 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_REQUIRE_AUTHENTICATION_NAME = SSL_REQUIRE_AUTHENTICATION;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-enabled">"cluster-ssl-enabled"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_ENABLED)
   boolean getClusterSSLEnabled();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-enabled">"cluster-ssl-enabled"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_ENABLED)
   void setClusterSSLEnabled(boolean enabled);
 
   /**
-   * The default cluster-ssl-enabled state.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED} state.
    * <p> Actual value of this constant is <code>false</code>.
    */
   boolean DEFAULT_CLUSTER_SSL_ENABLED = false;
   /**
-   * The name of the "ClusterSSLEnabled" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED} property
    */
   @ConfigAttribute(type = Boolean.class)
   String CLUSTER_SSL_ENABLED_NAME = CLUSTER_SSL_ENABLED;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-protocols">"cluster-ssl-protocols"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_PROTOCOLS)
   String getClusterSSLProtocols();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-protocols">"cluster-ssl-protocols"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_PROTOCOLS)
   void setClusterSSLProtocols(String protocols);
 
   /**
-   * The default cluster-ssl-protocols value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS} value.
    * <p> Actual value of this constant is <code>any</code>.
    */
   String DEFAULT_CLUSTER_SSL_PROTOCOLS = "any";
   /**
-   * The name of the "ClusterSSLProtocols" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_PROTOCOLS_NAME = CLUSTER_SSL_PROTOCOLS;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-ciphers">"cluster-ssl-ciphers"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_CIPHERS)
   String getClusterSSLCiphers();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-ciphers">"cluster-ssl-ciphers"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_CIPHERS)
   void setClusterSSLCiphers(String ciphers);
 
   /**
-   * The default cluster-ssl-ciphers value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS} value.
    * <p> Actual value of this constant is <code>any</code>.
    */
   String DEFAULT_CLUSTER_SSL_CIPHERS = "any";
   /**
-   * The name of the "ClusterSSLCiphers" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_CIPHERS_NAME = CLUSTER_SSL_CIPHERS;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-require-authentication">"cluster-ssl-require-authentication"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_REQUIRE_AUTHENTICATION)
   boolean getClusterSSLRequireAuthentication();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-require-authentication">"cluster-ssl-require-authentication"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_REQUIRE_AUTHENTICATION)
   void setClusterSSLRequireAuthentication(boolean enabled);
 
   /**
-   * The default cluster-ssl-require-authentication value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION} value.
    * <p> Actual value of this constant is <code>true</code>.
    */
   boolean DEFAULT_CLUSTER_SSL_REQUIRE_AUTHENTICATION = true;
   /**
-   * The name of the "ClusterSSLRequireAuthentication" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String CLUSTER_SSL_REQUIRE_AUTHENTICATION_NAME = CLUSTER_SSL_REQUIRE_AUTHENTICATION;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-keystore">"cluster-ssl-keystore"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_KEYSTORE)
   String getClusterSSLKeyStore();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-keystore">"cluster-ssl-keystore"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_KEYSTORE)
   void setClusterSSLKeyStore(String keyStore);
 
   /**
-   * The default cluster-ssl-keystore value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_KEYSTORE = "";
 
   /**
-   * The name of the "ClusterSSLKeyStore" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_KEYSTORE_NAME = CLUSTER_SSL_KEYSTORE;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-keystore-type">"cluster-ssl-keystore-type"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_KEYSTORE_TYPE)
   String getClusterSSLKeyStoreType();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-keystore-type">"cluster-ssl-keystore-type"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_KEYSTORE_TYPE)
   void setClusterSSLKeyStoreType(String keyStoreType);
 
   /**
-   * The default cluster-ssl-keystore-type value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_KEYSTORE_TYPE = "";
 
   /**
-   * The name of the "ClusterSSLKeyStoreType" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_KEYSTORE_TYPE_NAME = CLUSTER_SSL_KEYSTORE_TYPE;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-keystore-password">"cluster-ssl-keystore-password"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_KEYSTORE_PASSWORD)
   String getClusterSSLKeyStorePassword();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-keystore-password">"cluster-ssl-keystore-password"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_KEYSTORE_PASSWORD)
   void setClusterSSLKeyStorePassword(String keyStorePassword);
 
   /**
-   * The default cluster-ssl-keystore-password value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_KEYSTORE_PASSWORD = "";
 
   /**
-   * The name of the "ClusterSSLKeyStorePassword" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_KEYSTORE_PASSWORD_NAME = CLUSTER_SSL_KEYSTORE_PASSWORD;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-truststore">"cluster-ssl-truststore"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_TRUSTSTORE)
   String getClusterSSLTrustStore();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-truststore">"cluster-ssl-truststore"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_TRUSTSTORE)
   void setClusterSSLTrustStore(String trustStore);
 
   /**
-   * The default cluster-ssl-truststore value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_TRUSTSTORE = "";
 
   /**
-   * The name of the "ClusterSSLTrustStore" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_TRUSTSTORE_NAME = CLUSTER_SSL_TRUSTSTORE;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-truststore-password">"cluster-ssl-truststore-password"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_TRUSTSTORE_PASSWORD)
   String getClusterSSLTrustStorePassword();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#cluster-ssl-truststore-password">"cluster-ssl-truststore-password"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_TRUSTSTORE_PASSWORD)
   void setClusterSSLTrustStorePassword(String trusStorePassword);
 
   /**
-   * The default cluster-ssl-truststore-password value.
+   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_TRUSTSTORE_PASSWORD = "";
 
   /**
-   * The name of the "ClusterSSLKeyStorePassword" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_TRUSTSTORE_PASSWORD_NAME = CLUSTER_SSL_TRUSTSTORE_PASSWORD;
@@ -1246,7 +1181,8 @@ public interface DistributionConfig extends Config, LogConfig {
    * com.gemstone.gemfire.i18n.LogWriterI18n} instance to log to.
    * Set this property with put(), not with setProperty()
    *
-   * @since GemFire 4.0 */
+   * @since GemFire 4.0
+   */
   String LOG_WRITER_NAME = "log-writer";
 
   /**
@@ -1255,13 +1191,15 @@ public interface DistributionConfig extends Config, LogConfig {
    * in to a ds connect.
    * Set this property with put(), not with setProperty()
    *
-   * @since GemFire 7.0 */
+   * @since GemFire 7.0
+   */
   String DS_CONFIG_NAME = "ds-config";
 
   /**
    * The name of an internal property that specifies whether
    * the distributed system is reconnecting after a forced-
    * disconnect.
+   *
    * @since GemFire 8.1
    */
   String DS_RECONNECTING_NAME = "ds-reconnecting";
@@ -1290,6 +1228,7 @@ public interface DistributionConfig extends Config, LogConfig {
    * FileOutputStream will be closed when the distributed
    * system disconnects.  Set this property with put(), not
    * with setProperty()
+   *
    * @since GemFire 5.0
    */
   String LOG_OUTPUTSTREAM_NAME = "log-output-stream";
@@ -1305,69 +1244,65 @@ public interface DistributionConfig extends Config, LogConfig {
   String SECURITY_LOG_OUTPUTSTREAM_NAME = "security-log-output-stream";
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#socket-lease-time">"socket-lease-time"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}
    * property
    */
   @ConfigAttributeGetter(name = SOCKET_LEASE_TIME)
   int getSocketLeaseTime();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#socket-lease-time">"socket-lease-time"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}
    * property
    */
   @ConfigAttributeSetter(name = SOCKET_LEASE_TIME)
   void setSocketLeaseTime(int value);
 
   /**
-   * The default value of the "socketLeaseTime" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME} property
    */
   int DEFAULT_SOCKET_LEASE_TIME = 60000;
   /**
-   * The minimum socketLeaseTime.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_SOCKET_LEASE_TIME = 0;
   /**
-   * The maximum socketLeaseTime.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}.
    * <p> Actual value of this constant is <code>600000</code>.
    */
   int MAX_SOCKET_LEASE_TIME = 600000;
 
   /**
-   * The name of the "socketLeaseTime" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_SOCKET_LEASE_TIME, max = MAX_SOCKET_LEASE_TIME)
   String SOCKET_LEASE_TIME_NAME = SOCKET_LEASE_TIME;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#socket-buffer-size">"socket-buffer-size"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = SOCKET_BUFFER_SIZE)
   int getSocketBufferSize();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#socket-buffer-size">"socket-buffer-size"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = SOCKET_BUFFER_SIZE)
   void setSocketBufferSize(int value);
 
   /**
-   * The default value of the "socketBufferSize" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE} property
    */
   int DEFAULT_SOCKET_BUFFER_SIZE = 32768;
   /**
-   * The minimum socketBufferSize.
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}.
    * <p> Actual value of this constant is <code>1024</code>.
    */
   int MIN_SOCKET_BUFFER_SIZE = 1024;
   /**
-   * The maximum socketBufferSize.
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}.
    * <p> Actual value of this constant is <code>20000000</code>.
    */
   int MAX_SOCKET_BUFFER_SIZE = Connection.MAX_MSG_SIZE;
@@ -1376,14 +1311,14 @@ public interface DistributionConfig extends Config, LogConfig {
   int VALIDATE_CEILING = Integer.getInteger(DistributionConfig.GEMFIRE_PREFIX + "validateMessageSizeCeiling", 8 * 1024 * 1024).intValue();
 
   /**
-   * The name of the "socketBufferSize" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_SOCKET_BUFFER_SIZE, max = MAX_SOCKET_BUFFER_SIZE)
   String SOCKET_BUFFER_SIZE_NAME = SOCKET_BUFFER_SIZE;
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#mcast-send-buffer-size">"mcast-send-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_SEND_BUFFER_SIZE)
@@ -1391,32 +1326,32 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#mcast-send-buffer-size">"mcast-send-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_SEND_BUFFER_SIZE)
   void setMcastSendBufferSize(int value);
 
   /**
-   * The default value of the corresponding property
+   * The default value for  {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE} property
    */
   int DEFAULT_MCAST_SEND_BUFFER_SIZE = 65535;
 
   /**
-   * The minimum size of the buffer, in bytes.
+   * The minimum size of the  {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE}, in bytes.
    * <p> Actual value of this constant is <code>2048</code>.
    */
   int MIN_MCAST_SEND_BUFFER_SIZE = 2048;
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_MCAST_SEND_BUFFER_SIZE)
   String MCAST_SEND_BUFFER_SIZE_NAME = MCAST_SEND_BUFFER_SIZE;
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#mcast-recv-buffer-size">"mcast-recv-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_RECV_BUFFER_SIZE)
@@ -1424,32 +1359,32 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#mcast-recv-buffer-size">"mcast-recv-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_RECV_BUFFER_SIZE)
   void setMcastRecvBufferSize(int value);
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE} property
    */
   int DEFAULT_MCAST_RECV_BUFFER_SIZE = 1048576;
 
   /**
-   * The minimum size of the buffer, in bytes.
+   * The minimum size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE}, in bytes.
    * <p> Actual value of this constant is <code>2048</code>.
    */
   int MIN_MCAST_RECV_BUFFER_SIZE = 2048;
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_MCAST_RECV_BUFFER_SIZE)
   String MCAST_RECV_BUFFER_SIZE_NAME = MCAST_RECV_BUFFER_SIZE;
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#mcast-flow-control">"mcast-flow-control"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL}
    * property.
    */
   @ConfigAttributeGetter(name = MCAST_FLOW_CONTROL)
@@ -1457,57 +1392,57 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#mcast-flow-control">"mcast-flow-control"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_FLOW_CONTROL)
   void setMcastFlowControl(FlowControlParams values);
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} property
    */
   @ConfigAttribute(type = FlowControlParams.class)
   String MCAST_FLOW_CONTROL_NAME = MCAST_FLOW_CONTROL;
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} property
    */
   FlowControlParams DEFAULT_MCAST_FLOW_CONTROL
       = new FlowControlParams(1048576, (float) 0.25, 5000);
 
   /**
-   * The minimum byteAllowance for the mcast-flow-control setting of
+   * The minimum byteAllowance for the{@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
    * <code>100000</code>.
    */
   int MIN_FC_BYTE_ALLOWANCE = 10000;
 
   /**
-   * The minimum rechargeThreshold for the mcast-flow-control setting of
+   * The minimum rechargeThreshold for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
    * <code>0.1</code>
    */
   float MIN_FC_RECHARGE_THRESHOLD = (float) 0.1;
 
   /**
-   * The maximum rechargeThreshold for the mcast-flow-control setting of
+   * The maximum rechargeThreshold for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
    * <code>0.5</code>
    */
   float MAX_FC_RECHARGE_THRESHOLD = (float) 0.5;
 
   /**
-   * The minimum rechargeBlockMs for the mcast-flow-control setting of
+   * The minimum rechargeBlockMs for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
    * <code>500</code>
    */
   int MIN_FC_RECHARGE_BLOCK_MS = 500;
 
   /**
-   * The maximum rechargeBlockMs for the mcast-flow-control setting of
+   * The maximum rechargeBlockMs for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
    * <code>60000</code>
    */
   int MAX_FC_RECHARGE_BLOCK_MS = 60000;
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#udp-fragment-size">"udp-fragment-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE}
    * property.
    */
   @ConfigAttributeGetter(name = UDP_FRAGMENT_SIZE)
@@ -1515,36 +1450,36 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#udp-fragment-size">"udp-fragment-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = UDP_FRAGMENT_SIZE)
   void setUdpFragmentSize(int value);
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} property
    */
   int DEFAULT_UDP_FRAGMENT_SIZE = 60000;
 
   /**
-   * The minimum allowed udp-fragment-size setting of 1000
+   * The minimum allowed {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} setting of 1000
    */
   int MIN_UDP_FRAGMENT_SIZE = 1000;
 
   /**
-   * The maximum allowed udp-fragment-size setting of 60000
+   * The maximum allowed {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} setting of 60000
    */
   int MAX_UDP_FRAGMENT_SIZE = 60000;
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_UDP_FRAGMENT_SIZE, max = MAX_UDP_FRAGMENT_SIZE)
   String UDP_FRAGMENT_SIZE_NAME = UDP_FRAGMENT_SIZE;
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#udp-send-buffer-size">"udp-send-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = UDP_SEND_BUFFER_SIZE)
@@ -1552,32 +1487,32 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#udp-send-buffer-size">"udp-send-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = UDP_SEND_BUFFER_SIZE)
   void setUdpSendBufferSize(int value);
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE} property
    */
   int DEFAULT_UDP_SEND_BUFFER_SIZE = 65535;
 
   /**
-   * The minimum size of the buffer, in bytes.
+   * The minimum size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE}, in bytes.
    * <p> Actual value of this constant is <code>2048</code>.
    */
   int MIN_UDP_SEND_BUFFER_SIZE = 2048;
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_UDP_SEND_BUFFER_SIZE)
   String UDP_SEND_BUFFER_SIZE_NAME = UDP_SEND_BUFFER_SIZE;
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#udp-recv-buffer-size">"udp-recv-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = UDP_RECV_BUFFER_SIZE)
@@ -1585,59 +1520,58 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#udp-recv-buffer-size">"udp-recv-buffer-size"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = UDP_RECV_BUFFER_SIZE)
   void setUdpRecvBufferSize(int value);
 
   /**
-   * The default value of the unicast receive buffer size property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE} property
    */
   int DEFAULT_UDP_RECV_BUFFER_SIZE = 1048576;
 
   /**
-   * The default size of the unicast receive buffer property if tcp/ip sockets are
+   * The default size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}
+   * if tcp/ip sockets are
    * enabled and multicast is disabled
    */
   int DEFAULT_UDP_RECV_BUFFER_SIZE_REDUCED = 65535;
 
   /**
-   * The minimum size of the buffer, in bytes.
+   * The minimum size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}, in bytes.
    * <p> Actual value of this constant is <code>2048</code>.
    */
   int MIN_UDP_RECV_BUFFER_SIZE = 2048;
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_UDP_RECV_BUFFER_SIZE)
   String UDP_RECV_BUFFER_SIZE_NAME = UDP_RECV_BUFFER_SIZE;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#disable-tcp">"disable-tcp"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP}
    * property
    */
   @ConfigAttributeGetter(name = DISABLE_TCP)
   boolean getDisableTcp();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#disable-tcp">"disable-tcp"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP}
    * property.
    */
   @ConfigAttributeSetter(name = DISABLE_TCP)
   void setDisableTcp(boolean newValue);
 
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP} property
    */
   @ConfigAttribute(type = Boolean.class)
   String DISABLE_TCP_NAME = DISABLE_TCP;
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP} property
    */
   boolean DEFAULT_DISABLE_TCP = false;
 
@@ -1648,73 +1582,70 @@ public interface DistributionConfig extends Config, LogConfig {
   void setEnableTimeStatistics(boolean newValue);
 
   /**
-   * Returns the value of <a
-   * href="../DistributedSystem.html#enable-time-statistics">enable-time-statistics</a>
+   * Returns the value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_TIME_STATISTICS}
    * property
    */
   @ConfigAttributeGetter(name = ENABLE_TIME_STATISTICS)
   boolean getEnableTimeStatistics();
 
   /**
-   * the name of the corresponding property
+   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_TIME_STATISTICS} property
    */
   @ConfigAttribute(type = Boolean.class)
   String ENABLE_TIME_STATISTICS_NAME = ENABLE_TIME_STATISTICS;
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_TIME_STATISTICS} property
    */
   boolean DEFAULT_ENABLE_TIME_STATISTICS = false;
 
   /**
    * Sets the value for
-   * <a href="../DistributedSystem.html#use-cluster-configuration">use-shared-configuration</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION}
    */
   @ConfigAttributeSetter(name = USE_CLUSTER_CONFIGURATION)
   void setUseSharedConfiguration(boolean newValue);
 
   /**
-   * Returns the value of <a
-   * href="../DistributedSystem.html#use-cluster-configuration">use-cluster-configuration</a>
+   * Returns the value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION}
    * property
    */
   @ConfigAttributeGetter(name = USE_CLUSTER_CONFIGURATION)
   boolean getUseSharedConfiguration();
 
   /**
-   * the name of the corresponding property
+   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String USE_CLUSTER_CONFIGURATION_NAME = USE_CLUSTER_CONFIGURATION;
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION} property
    */
   boolean DEFAULT_USE_CLUSTER_CONFIGURATION = true;
 
   /**
    * Sets the value for
-   * <a href="../DistributedSystem.html#enable-cluster-configuration">enable-cluster-configuration</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION}
    */
   @ConfigAttributeSetter(name = ENABLE_CLUSTER_CONFIGURATION)
   void setEnableClusterConfiguration(boolean newValue);
 
   /**
-   * Returns the value of <a
-   * href="../DistributedSystem.html#enable-cluster-configuration">enable-cluster-configuration</a>
+   * Returns the value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION}
    * property
    */
   @ConfigAttributeGetter(name = ENABLE_CLUSTER_CONFIGURATION)
   boolean getEnableClusterConfiguration();
 
   /**
-   * the name of the corresponding property
+   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String ENABLE_CLUSTER_CONFIGURATION_NAME = ENABLE_CLUSTER_CONFIGURATION;
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION} property
    */
   boolean DEFAULT_ENABLE_CLUSTER_CONFIGURATION = true;
 
@@ -1724,7 +1655,7 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Returns the value of
-   * <a href="../DistributedSystem.html#cluster-configuration-dir">cluster-configuration-dir</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOAD_CLUSTER_CONFIGURATION_FROM_DIR}
    * property
    */
   @ConfigAttributeGetter(name = LOAD_CLUSTER_CONFIGURATION_FROM_DIR)
@@ -1732,7 +1663,7 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Sets the value of
-   * <a href="../DistributedSystem.html#cluster-configuration-dir">cluster-configuration-dir</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOAD_CLUSTER_CONFIGURATION_FROM_DIR}
    * property
    */
   @ConfigAttributeSetter(name = LOAD_CLUSTER_CONFIGURATION_FROM_DIR)
@@ -1755,13 +1686,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setEnableNetworkPartitionDetection(boolean newValue);
 
   /**
-   * Returns the value of the enable-network-partition-detection property
+   * Returns the value of the
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_NETWORK_PARTITION_DETECTION} property
    */
   @ConfigAttributeGetter(name = ENABLE_NETWORK_PARTITION_DETECTION)
   boolean getEnableNetworkPartitionDetection();
 
   /**
-   * the name of the corresponding property
+   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_NETWORK_PARTITION_DETECTION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String ENABLE_NETWORK_PARTITION_DETECTION_NAME = ENABLE_NETWORK_PARTITION_DETECTION;
@@ -1769,7 +1701,7 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Get the value of the
-   * <a href="../DistributedSystem.html#member-timeout">"member-timeout"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT}
    * property
    */
   @ConfigAttributeGetter(name = MEMBER_TIMEOUT)
@@ -1777,28 +1709,28 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * <a href="../DistributedSystem.html#member-timeout">"member-timeout"</a>
+   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT}
    * property
    */
   @ConfigAttributeSetter(name = MEMBER_TIMEOUT)
   void setMemberTimeout(int value);
 
   /**
-   * The default value of the corresponding property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} property
    */
   int DEFAULT_MEMBER_TIMEOUT = 5000;
 
   /**
-   * The minimum member-timeout setting of 1000 milliseconds
+   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} setting of 1000 milliseconds
    */
   int MIN_MEMBER_TIMEOUT = 10;
 
   /**
-   * The maximum member-timeout setting of 600000 millieseconds
+   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} setting of 600000 millieseconds
    */
   int MAX_MEMBER_TIMEOUT = 600000;
   /**
-   * The name of the corresponding property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_MEMBER_TIMEOUT, max = MAX_MEMBER_TIMEOUT)
   String MEMBER_TIMEOUT_NAME = MEMBER_TIMEOUT;
@@ -1815,101 +1747,97 @@ public interface DistributionConfig extends Config, LogConfig {
   void setMembershipPortRange(int[] range);
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#conserve-sockets">"conserve-sockets"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS}
    * property
    */
   @ConfigAttributeGetter(name = CONSERVE_SOCKETS)
   boolean getConserveSockets();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#conserve-sockets">"conserve-sockets"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS}
    * property.
    */
   @ConfigAttributeSetter(name = CONSERVE_SOCKETS)
   void setConserveSockets(boolean newValue);
 
   /**
-   * The name of the "conserveSockets" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS} property
    */
   @ConfigAttribute(type = Boolean.class)
   String CONSERVE_SOCKETS_NAME = CONSERVE_SOCKETS;
 
   /**
-   * The default value of the "conserveSockets" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS} property
    */
   boolean DEFAULT_CONSERVE_SOCKETS = true;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#roles">"roles"</a>
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES}
    * property
    */
   @ConfigAttributeGetter(name = ROLES)
   String getRoles();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#roles">"roles"</a>
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES}
    * property.
    */
   @ConfigAttributeSetter(name = ROLES)
   void setRoles(String roles);
 
   /**
-   * The name of the "roles" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES} property
    */
   @ConfigAttribute(type = String.class)
   String ROLES_NAME = ROLES;
 
   /**
-   * The default value of the "roles" property
+   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES} property
    */
   String DEFAULT_ROLES = "";
 
   /**
-   * The name of the "max wait time for reconnect" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT} property
    */
   @ConfigAttribute(type = Integer.class)
   String MAX_WAIT_TIME_FOR_RECONNECT_NAME = MAX_WAIT_TIME_RECONNECT;
 
   /**
-   * Default value for MAX_WAIT_TIME_FOR_RECONNECT, 60,000 milliseconds.
+   * Default value for {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT}, 60,000 milliseconds.
    */
   int DEFAULT_MAX_WAIT_TIME_FOR_RECONNECT = 60000;
 
   /**
-   * Sets the max wait timeout, in milliseconds, for reconnect.
+   * Sets the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT}, in milliseconds, for reconnect.
    */
   @ConfigAttributeSetter(name = MAX_WAIT_TIME_RECONNECT)
   void setMaxWaitTimeForReconnect(int timeOut);
 
   /**
-   * Returns the max wait timeout, in milliseconds, for reconnect.
+   * Returns the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT}, in milliseconds, for reconnect.
    */
   @ConfigAttributeGetter(name = MAX_WAIT_TIME_RECONNECT)
   int getMaxWaitTimeForReconnect();
 
   /**
-   * The name of the "max number of tries for reconnect" property.
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES} property.
    */
   @ConfigAttribute(type = Integer.class)
   String MAX_NUM_RECONNECT_TRIES_NAME = MAX_NUM_RECONNECT_TRIES;
 
   /**
-   * Default value for MAX_NUM_RECONNECT_TRIES_NAME.
+   * Default value for {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES}.
    */
   int DEFAULT_MAX_NUM_RECONNECT_TRIES = 3;
 
   /**
-   * Sets the max number of tries for reconnect.
+   * Sets the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES}.
    */
   @ConfigAttributeSetter(name = MAX_NUM_RECONNECT_TRIES)
   void setMaxNumReconnectTries(int tries);
 
   /**
-   * Returns the value for max number of tries for reconnect.
+   * Returns the value for {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES}.
    */
   @ConfigAttributeGetter(name = MAX_NUM_RECONNECT_TRIES)
   int getMaxNumReconnectTries();
@@ -1917,105 +1845,93 @@ public interface DistributionConfig extends Config, LogConfig {
   // ------------------- Asynchronous Messaging Properties -------------------
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#async-distribution-timeout">
-   * "async-distribution-timeout"</a> property.
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT} property.
    */
   @ConfigAttributeGetter(name = ASYNC_DISTRIBUTION_TIMEOUT)
   int getAsyncDistributionTimeout();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#async-distribution-timeout">
-   * "async-distribution-timeout"</a> property.
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  property.
    */
   @ConfigAttributeSetter(name = ASYNC_DISTRIBUTION_TIMEOUT)
   void setAsyncDistributionTimeout(int newValue);
 
   /**
-   * The default value of "asyncDistributionTimeout" is <code>0</code>.
+   * The default value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>0</code>.
    */
   int DEFAULT_ASYNC_DISTRIBUTION_TIMEOUT = 0;
   /**
-   * The minimum value of "asyncDistributionTimeout" is <code>0</code>.
+   * The minimum value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>0</code>.
    */
   int MIN_ASYNC_DISTRIBUTION_TIMEOUT = 0;
   /**
-   * The maximum value of "asyncDistributionTimeout" is <code>60000</code>.
+   * The maximum value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>60000</code>.
    */
   int MAX_ASYNC_DISTRIBUTION_TIMEOUT = 60000;
 
   /**
-   * The name of the "asyncDistributionTimeout" property
+   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_ASYNC_DISTRIBUTION_TIMEOUT, max = MAX_ASYNC_DISTRIBUTION_TIMEOUT)
   String ASYNC_DISTRIBUTION_TIMEOUT_NAME = ASYNC_DISTRIBUTION_TIMEOUT;
 
   /**
-   * Returns the value of the <a
-   * href="../DistributedSystem.html#async-queue-timeout">
-   * "async-queue-timeout"</a> property.
+   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_QUEUE_TIMEOUT}  property.
    */
   @ConfigAttributeGetter(name = ASYNC_QUEUE_TIMEOUT)
   int getAsyncQueueTimeout();
 
   /**
-   * Sets the value of the <a
-   * href="../DistributedSystem.html#async-queue-timeout">
-   * "async-queue-timeout"</a> property.
+   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_QUEUE_TIMEOUT} property.
    */
   @ConfigAttributeSetter(name = ASYNC_QUEUE_TIMEOUT)
   void setAsyncQueueTimeout(int newValue);
 
   /**
-   * The default value of "asyncQueueTimeout" is <code>60000</code>.
+   * The default value of {@link com.gemstone

<TRUNCATED>