You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sa...@apache.org on 2016/06/14 19:11:17 UTC

[67/90] [abbrv] incubator-geode git commit: GEODE-1377: Renaming of DistributedSystemConfigProperties to ConfigurationProperties

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b5ed0935/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 9c5213f..a26de3f 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
@@ -17,6 +17,7 @@
 
 package com.gemstone.gemfire.distributed.internal;
 
+import com.gemstone.gemfire.distributed.ConfigurationProperties;
 import com.gemstone.gemfire.distributed.DistributedSystem;
 import com.gemstone.gemfire.internal.Config;
 import com.gemstone.gemfire.internal.ConfigSource;
@@ -31,7 +32,7 @@ import java.lang.reflect.Method;
 import java.net.InetAddress;
 import java.util.*;
 
-import static com.gemstone.gemfire.distributed.DistributedSystemConfigProperties.*;
+import static com.gemstone.gemfire.distributed.ConfigurationProperties.*;
 
 /**
  * Provides accessor (and in some cases mutator) methods for the
@@ -41,7 +42,7 @@ import static com.gemstone.gemfire.distributed.DistributedSystemConfigProperties
  * <p>
  * <p>
  * <p>
- * Descriptions of these properties can be found {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties}.
+ * Descriptions of these properties can be found {@link ConfigurationProperties}.
  *
  * @see com.gemstone.gemfire.internal.Config
  * @since GemFire 2.1
@@ -51,7 +52,7 @@ public interface DistributionConfig extends Config, LogConfig {
   ////////////////////  Instance Methods  ////////////////////
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#NAME} property
+   * Returns the value of the {@link ConfigurationProperties#NAME} property
    * Gets the member's name.
    * A name is optional and by default empty.
    * If set it must be unique in the ds.
@@ -88,196 +89,196 @@ public interface DistributionConfig extends Config, LogConfig {
   String DEFAULT_NAME = "";
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}</a>
+   * Returns the value of the {@link ConfigurationProperties#MCAST_PORT}</a>
    * property
    */
   @ConfigAttributeGetter(name = MCAST_PORT_NAME)
   int getMcastPort();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}
+   * Sets the value of the {@link ConfigurationProperties#MCAST_PORT}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_PORT_NAME)
   void setMcastPort(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT} property
+   * The default value of the {@link ConfigurationProperties#MCAST_PORT} property
    */
   int DEFAULT_MCAST_PORT = 0;
 
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}.
+   * The minimum {@link ConfigurationProperties#MCAST_PORT}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_MCAST_PORT = 0;
 
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}.
+   * The maximum {@link ConfigurationProperties#MCAST_PORT}.
    * <p> Actual value of this constant is <code>65535</code>.
    */
   int MAX_MCAST_PORT = 65535;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}
+   * Returns the value of the {@link ConfigurationProperties#TCP_PORT}
    * property
    */
   @ConfigAttributeGetter(name = TCP_PORT)
   int getTcpPort();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}
+   * Sets the value of the {@link ConfigurationProperties#TCP_PORT}
    * property
    */
   @ConfigAttributeSetter(name = TCP_PORT)
   void setTcpPort(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT} property
+   * The default value of the {@link ConfigurationProperties#TCP_PORT} property
    */
   int DEFAULT_TCP_PORT = 0;
 
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}.
+   * The minimum {@link ConfigurationProperties#TCP_PORT}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_TCP_PORT = 0;
 
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}.
+   * The maximum {@link ConfigurationProperties#TCP_PORT}.
    * <p> Actual value of this constant is <code>65535</code>.
    */
   int MAX_TCP_PORT = 65535;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS}
+   * Returns the value of the {@link ConfigurationProperties#MCAST_ADDRESS}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_ADDRESS)
   InetAddress getMcastAddress();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS}
+   * Sets the value of the {@link ConfigurationProperties#MCAST_ADDRESS}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_ADDRESS)
   void setMcastAddress(InetAddress value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS} property
+   * The name of the {@link ConfigurationProperties#MCAST_ADDRESS} property
    */
   @ConfigAttribute(type = InetAddress.class)
   String MCAST_ADDRESS_NAME = MCAST_ADDRESS;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_ADDRESS} property.
+   * The default value of the {@link ConfigurationProperties#MCAST_ADDRESS} property.
    * Current value is <code>239.192.81.1</code>
    */
   InetAddress DEFAULT_MCAST_ADDRESS = AbstractDistributionConfig._getDefaultMcastAddress();
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}
+   * Returns the value of the {@link ConfigurationProperties#MCAST_TTL}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_TTL)
   int getMcastTtl();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}
+   * Sets the value of the {@link ConfigurationProperties#MCAST_TTL}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_TTL)
   void setMcastTtl(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL} property
+   * The default value of the {@link ConfigurationProperties#MCAST_TTL} property
    */
   int DEFAULT_MCAST_TTL = 32;
 
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}.
+   * The minimum {@link ConfigurationProperties#MCAST_TTL}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_MCAST_TTL = 0;
 
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}.
+   * The maximum {@link ConfigurationProperties#MCAST_TTL}.
    * <p> Actual value of this constant is <code>255</code>.
    */
   int MAX_MCAST_TTL = 255;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS}
+   * Returns the value of the {@link ConfigurationProperties#BIND_ADDRESS}
    * property
    */
   @ConfigAttributeGetter(name = BIND_ADDRESS)
   String getBindAddress();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS}
+   * Sets the value of the {@link ConfigurationProperties#BIND_ADDRESS}
    * property
    */
   @ConfigAttributeSetter(name = BIND_ADDRESS)
   void setBindAddress(String value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS} property
+   * The name of the {@link ConfigurationProperties#BIND_ADDRESS} property
    */
   @ConfigAttribute(type = String.class)
   String BIND_ADDRESS_NAME = BIND_ADDRESS;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#BIND_ADDRESS} property.
+   * The default value of the {@link ConfigurationProperties#BIND_ADDRESS} property.
    * Current value is an empty string <code>""</code>
    */
   String DEFAULT_BIND_ADDRESS = "";
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS}
+   * Returns the value of the {@link ConfigurationProperties#SERVER_BIND_ADDRESS}
    * property
    */
   @ConfigAttributeGetter(name = SERVER_BIND_ADDRESS)
   String getServerBindAddress();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS}
+   * Sets the value of the {@link ConfigurationProperties#SERVER_BIND_ADDRESS}
    * property
    */
   @ConfigAttributeSetter(name = SERVER_BIND_ADDRESS)
   void setServerBindAddress(String value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS} property
+   * The name of the {@link ConfigurationProperties#SERVER_BIND_ADDRESS} property
    */
   @ConfigAttribute(type = String.class)
   String SERVER_BIND_ADDRESS_NAME = SERVER_BIND_ADDRESS;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SERVER_BIND_ADDRESS} property.
+   * The default value of the {@link ConfigurationProperties#SERVER_BIND_ADDRESS} property.
    * Current value is an empty string <code>""</code>
    */
   String DEFAULT_SERVER_BIND_ADDRESS = "";
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOCATORS} property
+   * Returns the value of the {@link ConfigurationProperties#LOCATORS} property
    */
   @ConfigAttributeGetter(name = LOCATORS)
   String getLocators();
@@ -299,13 +300,13 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLocators(String value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOCATORS} property
+   * The name of the {@link ConfigurationProperties#LOCATORS} property
    */
   @ConfigAttribute(type = String.class)
   String LOCATORS_NAME = LOCATORS;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOCATORS} property
+   * The default value of the {@link ConfigurationProperties#LOCATORS} property
    */
   String DEFAULT_LOCATORS = "";
 
@@ -325,13 +326,13 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLocatorWaitTime(int seconds);
 
   /**
-   * returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property
+   * returns the value of the {@link ConfigurationProperties#START_LOCATOR} property
    */
   @ConfigAttributeGetter(name = START_LOCATOR)
   String getStartLocator();
 
   /**
-   * Sets the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property.
+   * Sets the {@link ConfigurationProperties#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
@@ -342,17 +343,17 @@ public interface DistributionConfig extends Config, LogConfig {
   void setStartLocator(String value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property
+   * The name of the {@link ConfigurationProperties#START_LOCATOR} property
    */
   @ConfigAttribute(type = String.class)
   String START_LOCATOR_NAME = START_LOCATOR;
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#START_LOCATOR} property
+   * The default value of the {@link ConfigurationProperties#START_LOCATOR} property
    */
   String DEFAULT_START_LOCATOR = "";
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DEPLOY_WORKING_DIR} property
+   * Returns the value of the {@link ConfigurationProperties#DEPLOY_WORKING_DIR} property
    */
   @ConfigAttributeGetter(name = DEPLOY_WORKING_DIR)
   File getDeployWorkingDir();
@@ -369,7 +370,7 @@ public interface DistributionConfig extends Config, LogConfig {
   void setDeployWorkingDir(File value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DEPLOY_WORKING_DIR} property.
+   * The name of the {@link ConfigurationProperties#DEPLOY_WORKING_DIR} property.
    */
   @ConfigAttribute(type = File.class)
   String DEPLOY_WORKING_DIR_NAME = DEPLOY_WORKING_DIR;
@@ -381,7 +382,7 @@ public interface DistributionConfig extends Config, LogConfig {
   File DEFAULT_DEPLOY_WORKING_DIR = new File(".");
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USER_COMMAND_PACKAGES} property
+   * Returns the value of the {@link ConfigurationProperties#USER_COMMAND_PACKAGES} property
    */
   @ConfigAttributeGetter(name = USER_COMMAND_PACKAGES)
   String getUserCommandPackages();
@@ -398,18 +399,18 @@ public interface DistributionConfig extends Config, LogConfig {
   void setUserCommandPackages(String value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USER_COMMAND_PACKAGES} property.
+   * The name of the {@link ConfigurationProperties#USER_COMMAND_PACKAGES} property.
    */
   @ConfigAttribute(type = String.class)
   String USER_COMMAND_PACKAGES_NAME = USER_COMMAND_PACKAGES;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USER_COMMAND_PACKAGES} property
+   * The default value of the {@link ConfigurationProperties#USER_COMMAND_PACKAGES} property
    */
   String DEFAULT_USER_COMMAND_PACKAGES = "";
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE} property
+   * Returns the value of the {@link ConfigurationProperties#LOG_FILE} property
    *
    * @return <code>null</code> if logging information goes to standard
    * out
@@ -432,20 +433,20 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLogFile(File value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE} property
+   * The name of the {@link ConfigurationProperties#LOG_FILE} property
    */
   @ConfigAttribute(type = File.class)
   String LOG_FILE_NAME = LOG_FILE;
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE}.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL} property
+   * Returns the value of the {@link ConfigurationProperties#LOG_LEVEL} property
    *
    * @see com.gemstone.gemfire.internal.logging.LogWriterImpl
    */
@@ -453,7 +454,7 @@ public interface DistributionConfig extends Config, LogConfig {
   int getLogLevel();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL} property
+   * Sets the value of the {@link ConfigurationProperties#LOG_LEVEL} property
    *
    * @see com.gemstone.gemfire.internal.logging.LogWriterImpl
    */
@@ -461,90 +462,90 @@ public interface DistributionConfig extends Config, LogConfig {
   void setLogLevel(int value);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL}.
+   * The default {@link ConfigurationProperties#LOG_LEVEL}.
    * <p> Actual value of this constant is {@link InternalLogWriter#CONFIG_LEVEL}.
    */
   int DEFAULT_LOG_LEVEL = InternalLogWriter.CONFIG_LEVEL;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL}.
+   * The minimum {@link ConfigurationProperties#LOG_LEVEL}.
    * <p> Actual value of this constant is {@link InternalLogWriter#ALL_LEVEL}.
    */
   int MIN_LOG_LEVEL = InternalLogWriter.ALL_LEVEL;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL}.
+   * The maximum {@link ConfigurationProperties#LOG_LEVEL}.
    * <p> Actual value of this constant is {@link InternalLogWriter#NONE_LEVEL}.
    */
   int MAX_LOG_LEVEL = InternalLogWriter.NONE_LEVEL;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_LEVEL} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED}
+   * Returns the value of the {@link ConfigurationProperties#STATISTIC_SAMPLING_ENABLED}
    * property
    */
   @ConfigAttributeGetter(name = STATISTIC_SAMPLING_ENABLED)
   boolean getStatisticSamplingEnabled();
 
   /**
-   * Sets {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED}
+   * Sets {@link ConfigurationProperties#STATISTIC_SAMPLING_ENABLED}
    */
   @ConfigAttributeSetter(name = STATISTIC_SAMPLING_ENABLED)
   void setStatisticSamplingEnabled(boolean newValue);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED} property
+   * The name of the {@link ConfigurationProperties#STATISTIC_SAMPLING_ENABLED} property
    */
   @ConfigAttribute(type = Boolean.class)
   String STATISTIC_SAMPLING_ENABLED_NAME = STATISTIC_SAMPLING_ENABLED;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLING_ENABLED} property
+   * The default value of the {@link ConfigurationProperties#STATISTIC_SAMPLING_ENABLED} property
    */
   boolean DEFAULT_STATISTIC_SAMPLING_ENABLED = true;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}
+   * Returns the value of the {@link ConfigurationProperties#STATISTIC_SAMPLE_RATE}
    * property
    */
   @ConfigAttributeGetter(name = STATISTIC_SAMPLE_RATE)
   int getStatisticSampleRate();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}
+   * Sets the value of the {@link ConfigurationProperties#STATISTIC_SAMPLE_RATE}
    * property
    */
   @ConfigAttributeSetter(name = STATISTIC_SAMPLE_RATE)
   void setStatisticSampleRate(int value);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}.
+   * The default {@link ConfigurationProperties#STATISTIC_SAMPLE_RATE}.
    * <p> Actual value of this constant is <code>1000</code> milliseconds.
    */
   int DEFAULT_STATISTIC_SAMPLE_RATE = 1000;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}.
+   * The minimum {@link ConfigurationProperties#STATISTIC_SAMPLE_RATE}.
    * <p> Actual value of this constant is <code>100</code> milliseconds.
    */
   int MIN_STATISTIC_SAMPLE_RATE = 100;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}.
+   * The maximum {@link ConfigurationProperties#STATISTIC_SAMPLE_RATE}.
    * <p> Actual value of this constant is <code>60000</code> milliseconds.
    */
   int MAX_STATISTIC_SAMPLE_RATE = 60000;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property.
+   * Returns the value of the {@link ConfigurationProperties#STATISTIC_ARCHIVE_FILE} property.
    *
    * @return <code>null</code> if no file was specified
    */
@@ -552,58 +553,58 @@ public interface DistributionConfig extends Config, LogConfig {
   File getStatisticArchiveFile();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property.
+   * Sets the value of the {@link ConfigurationProperties#STATISTIC_ARCHIVE_FILE} property.
    */
   @ConfigAttributeSetter(name = STATISTIC_ARCHIVE_FILE)
   void setStatisticArchiveFile(File value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property
+   * The name of the {@link ConfigurationProperties#STATISTIC_ARCHIVE_FILE} property
    */
   @ConfigAttribute(type = File.class)
   String STATISTIC_ARCHIVE_FILE_NAME = STATISTIC_ARCHIVE_FILE;
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE}.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE}
+   * Returns the value of the {@link ConfigurationProperties#CACHE_XML_FILE}
    * property
    */
   @ConfigAttributeGetter(name = CACHE_XML_FILE)
   File getCacheXmlFile();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE}
+   * Sets the value of the {@link ConfigurationProperties#CACHE_XML_FILE}
    * property
    */
   @ConfigAttributeSetter(name = CACHE_XML_FILE)
   void setCacheXmlFile(File value);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE} property
+   * The name of the {@link ConfigurationProperties#CACHE_XML_FILE} property
    */
   @ConfigAttribute(type = File.class)
   String CACHE_XML_FILE_NAME = CACHE_XML_FILE;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CACHE_XML_FILE} property
+   * The default value of the {@link ConfigurationProperties#CACHE_XML_FILE} property
    */
   File DEFAULT_CACHE_XML_FILE = new File("cache.xml");
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}
+   * Returns the value of the {@link ConfigurationProperties#ACK_WAIT_THRESHOLD}
    * property
    */
   @ConfigAttributeGetter(name = ACK_WAIT_THRESHOLD)
   int getAckWaitThreshold();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}
+   * Sets the value of the {@link ConfigurationProperties#ACK_WAIT_THRESHOLD}
    * property
    * Setting this value too low will cause spurious alerts.
    */
@@ -611,35 +612,35 @@ public interface DistributionConfig extends Config, LogConfig {
   void setAckWaitThreshold(int newThreshold);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}.
+   * The default {@link ConfigurationProperties#ACK_WAIT_THRESHOLD}.
    * <p> Actual value of this constant is <code>15</code> seconds.
    */
   int DEFAULT_ACK_WAIT_THRESHOLD = 15;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}.
+   * The minimum {@link ConfigurationProperties#ACK_WAIT_THRESHOLD}.
    * <p> Actual value of this constant is <code>1</code> second.
    */
   int MIN_ACK_WAIT_THRESHOLD = 1;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}.
+   * The maximum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}
+   * Returns the value of the {@link ConfigurationProperties#ACK_SEVERE_ALERT_THRESHOLD}
    * property
    */
   @ConfigAttributeGetter(name = ACK_SEVERE_ALERT_THRESHOLD)
   int getAckSevereAlertThreshold();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}
+   * Sets the value of the {@link ConfigurationProperties#ACK_SEVERE_ALERT_THRESHOLD}
    * property
    * Setting this value too low will cause spurious forced disconnects.
    */
@@ -647,174 +648,174 @@ public interface DistributionConfig extends Config, LogConfig {
   void setAckSevereAlertThreshold(int newThreshold);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}.
+   * The minimum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD}.
+   * The maximum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_SEVERE_ALERT_THRESHOLD} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}
+   * Returns the value of the {@link ConfigurationProperties#ARCHIVE_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = ARCHIVE_FILE_SIZE_LIMIT)
   int getArchiveFileSizeLimit();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}
+   * Sets the value of the {@link ConfigurationProperties#ARCHIVE_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = ARCHIVE_FILE_SIZE_LIMIT)
   void setArchiveFileSizeLimit(int value);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}.
+   * The default {@link ConfigurationProperties#ARCHIVE_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_ARCHIVE_FILE_SIZE_LIMIT = 0;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}.
+   * The minimum {@link ConfigurationProperties#ARCHIVE_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_ARCHIVE_FILE_SIZE_LIMIT = 0;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT}.
+   * The maximum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_FILE_SIZE_LIMIT} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}
+   * Returns the value of the {@link ConfigurationProperties#ARCHIVE_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = ARCHIVE_DISK_SPACE_LIMIT)
   int getArchiveDiskSpaceLimit();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}
+   * Sets the value of the {@link ConfigurationProperties#ARCHIVE_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = ARCHIVE_DISK_SPACE_LIMIT)
   void setArchiveDiskSpaceLimit(int value);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}.
+   * The default {@link ConfigurationProperties#ARCHIVE_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_ARCHIVE_DISK_SPACE_LIMIT = 0;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}.
+   * The minimum {@link ConfigurationProperties#ARCHIVE_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_ARCHIVE_DISK_SPACE_LIMIT = 0;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT}.
+   * The maximum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ARCHIVE_DISK_SPACE_LIMIT} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}
+   * Returns the value of the {@link ConfigurationProperties#LOG_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = LOG_FILE_SIZE_LIMIT)
   int getLogFileSizeLimit();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}
+   * Sets the value of the {@link ConfigurationProperties#LOG_FILE_SIZE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = LOG_FILE_SIZE_LIMIT)
   void setLogFileSizeLimit(int value);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}.
+   * The default {@link ConfigurationProperties#LOG_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_LOG_FILE_SIZE_LIMIT = 0;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}.
+   * The minimum {@link ConfigurationProperties#LOG_FILE_SIZE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_LOG_FILE_SIZE_LIMIT = 0;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT}.
+   * The maximum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE_SIZE_LIMIT} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}
+   * Returns the value of the {@link ConfigurationProperties#LOG_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeGetter(name = LOG_DISK_SPACE_LIMIT)
   int getLogDiskSpaceLimit();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}
+   * Sets the value of the {@link ConfigurationProperties#LOG_DISK_SPACE_LIMIT}
    * property
    */
   @ConfigAttributeSetter(name = LOG_DISK_SPACE_LIMIT)
   void setLogDiskSpaceLimit(int value);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}.
+   * The default {@link ConfigurationProperties#LOG_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int DEFAULT_LOG_DISK_SPACE_LIMIT = 0;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}.
+   * The minimum {@link ConfigurationProperties#LOG_DISK_SPACE_LIMIT}.
    * <p> Actual value of this constant is <code>0</code> megabytes.
    */
   int MIN_LOG_DISK_SPACE_LIMIT = 0;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT}.
+   * The maximum {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_DISK_SPACE_LIMIT} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED}
+   * Returns the value of the {@link ConfigurationProperties#SSL_ENABLED}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLEnabled} instead.
@@ -823,7 +824,7 @@ public interface DistributionConfig extends Config, LogConfig {
   boolean getSSLEnabled();
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED} state.
+   * The default {@link ConfigurationProperties#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.
@@ -831,7 +832,7 @@ public interface DistributionConfig extends Config, LogConfig {
   boolean DEFAULT_SSL_ENABLED = false;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED} property
+   * The name of the {@link ConfigurationProperties#SSL_ENABLED} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_ENABLED_NAME} instead.
    */
@@ -839,7 +840,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_ENABLED_NAME = SSL_ENABLED;
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_ENABLED}
+   * Sets the value of the {@link ConfigurationProperties#SSL_ENABLED}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLEnabled} instead.
@@ -848,7 +849,7 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLEnabled(boolean enabled);
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS}
+   * Returns the value of the {@link ConfigurationProperties#SSL_PROTOCOLS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLProtocols} instead.
@@ -857,7 +858,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String getSSLProtocols();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS}
+   * Sets the value of the {@link ConfigurationProperties#SSL_PROTOCOLS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLProtocols} instead.
@@ -866,14 +867,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLProtocols(String protocols);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS} value.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_PROTOCOLS} property
+   * The name of the {@link ConfigurationProperties#SSL_PROTOCOLS} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_PROTOCOLS_NAME} instead.
    */
@@ -881,7 +882,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_PROTOCOLS_NAME = SSL_PROTOCOLS;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS}
+   * Returns the value of the {@link ConfigurationProperties#SSL_CIPHERS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLCiphers} instead.
@@ -890,7 +891,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String getSSLCiphers();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS}
+   * Sets the value of the {@link ConfigurationProperties#SSL_CIPHERS}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLCiphers} instead.
@@ -899,14 +900,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLCiphers(String ciphers);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS} value.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_CIPHERS} property
+   * The name of the {@link ConfigurationProperties#SSL_CIPHERS} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_CIPHERS_NAME} instead.
    */
@@ -914,7 +915,7 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_CIPHERS_NAME = SSL_CIPHERS;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION}
+   * Returns the value of the {@link ConfigurationProperties#SSL_REQUIRE_AUTHENTICATION}
    * property.
    *
    * @deprecated as of 8.0 use {@link #getClusterSSLRequireAuthentication} instead.
@@ -923,7 +924,7 @@ public interface DistributionConfig extends Config, LogConfig {
   boolean getSSLRequireAuthentication();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION}
+   * Sets the value of the {@link ConfigurationProperties#SSL_REQUIRE_AUTHENTICATION}
    * property.
    *
    * @deprecated as of 8.0 use {@link #setClusterSSLRequireAuthentication} instead.
@@ -932,14 +933,14 @@ public interface DistributionConfig extends Config, LogConfig {
   void setSSLRequireAuthentication(boolean enabled);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION} value.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SSL_REQUIRE_AUTHENTICATION} property
+   * The name of the {@link ConfigurationProperties#SSL_REQUIRE_AUTHENTICATION} property
    *
    * @deprecated as of 8.0 use {@link #CLUSTER_SSL_REQUIRE_AUTHENTICATION_NAME} instead.
    */
@@ -947,231 +948,231 @@ public interface DistributionConfig extends Config, LogConfig {
   String SSL_REQUIRE_AUTHENTICATION_NAME = SSL_REQUIRE_AUTHENTICATION;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_ENABLED}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_ENABLED)
   boolean getClusterSSLEnabled();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_ENABLED}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_ENABLED)
   void setClusterSSLEnabled(boolean enabled);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED} state.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_ENABLED} state.
    * <p> Actual value of this constant is <code>false</code>.
    */
   boolean DEFAULT_CLUSTER_SSL_ENABLED = false;
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_ENABLED} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_ENABLED} property
    */
   @ConfigAttribute(type = Boolean.class)
   String CLUSTER_SSL_ENABLED_NAME = CLUSTER_SSL_ENABLED;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_PROTOCOLS}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_PROTOCOLS)
   String getClusterSSLProtocols();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_PROTOCOLS}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_PROTOCOLS)
   void setClusterSSLProtocols(String protocols);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_PROTOCOLS} value.
    * <p> Actual value of this constant is <code>any</code>.
    */
   String DEFAULT_CLUSTER_SSL_PROTOCOLS = "any";
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_PROTOCOLS} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_PROTOCOLS} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_PROTOCOLS_NAME = CLUSTER_SSL_PROTOCOLS;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_CIPHERS}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_CIPHERS)
   String getClusterSSLCiphers();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_CIPHERS}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_CIPHERS)
   void setClusterSSLCiphers(String ciphers);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_CIPHERS} value.
    * <p> Actual value of this constant is <code>any</code>.
    */
   String DEFAULT_CLUSTER_SSL_CIPHERS = "any";
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_CIPHERS} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_CIPHERS} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_CIPHERS_NAME = CLUSTER_SSL_CIPHERS;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_REQUIRE_AUTHENTICATION)
   boolean getClusterSSLRequireAuthentication();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_REQUIRE_AUTHENTICATION)
   void setClusterSSLRequireAuthentication(boolean enabled);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION} value.
+   * The default {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_REQUIRE_AUTHENTICATION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String CLUSTER_SSL_REQUIRE_AUTHENTICATION_NAME = CLUSTER_SSL_REQUIRE_AUTHENTICATION;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_KEYSTORE)
   String getClusterSSLKeyStore();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_KEYSTORE)
   void setClusterSSLKeyStore(String keyStore);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_KEYSTORE = "";
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_KEYSTORE_NAME = CLUSTER_SSL_KEYSTORE;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_TYPE}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_KEYSTORE_TYPE)
   String getClusterSSLKeyStoreType();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_TYPE}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_KEYSTORE_TYPE)
   void setClusterSSLKeyStoreType(String keyStoreType);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_TYPE} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_KEYSTORE_TYPE = "";
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_TYPE} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_TYPE} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_KEYSTORE_TYPE_NAME = CLUSTER_SSL_KEYSTORE_TYPE;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_KEYSTORE_PASSWORD)
   String getClusterSSLKeyStorePassword();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_KEYSTORE_PASSWORD)
   void setClusterSSLKeyStorePassword(String keyStorePassword);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_PASSWORD} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_KEYSTORE_PASSWORD = "";
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_KEYSTORE_PASSWORD} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_KEYSTORE_PASSWORD} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_KEYSTORE_PASSWORD_NAME = CLUSTER_SSL_KEYSTORE_PASSWORD;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_TRUSTSTORE)
   String getClusterSSLTrustStore();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_TRUSTSTORE)
   void setClusterSSLTrustStore(String trustStore);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_TRUSTSTORE = "";
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_TRUSTSTORE_NAME = CLUSTER_SSL_TRUSTSTORE;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD}
+   * Returns the value of the {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeGetter(name = CLUSTER_SSL_TRUSTSTORE_PASSWORD)
   String getClusterSSLTrustStorePassword();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD}
+   * Sets the value of the {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD}
    * property.
    */
   @ConfigAttributeSetter(name = CLUSTER_SSL_TRUSTSTORE_PASSWORD)
   void setClusterSSLTrustStorePassword(String trusStorePassword);
 
   /**
-   * The default {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD} value.
+   * The default {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD} value.
    * <p> Actual value of this constant is "".
    */
   String DEFAULT_CLUSTER_SSL_TRUSTSTORE_PASSWORD = "";
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD} property
+   * The name of the {@link ConfigurationProperties#CLUSTER_SSL_TRUSTSTORE_PASSWORD} property
    */
   @ConfigAttribute(type = String.class)
   String CLUSTER_SSL_TRUSTSTORE_PASSWORD_NAME = CLUSTER_SSL_TRUSTSTORE_PASSWORD;
@@ -1244,65 +1245,65 @@ public interface DistributionConfig extends Config, LogConfig {
   String SECURITY_LOG_OUTPUTSTREAM_NAME = "security-log-output-stream";
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}
+   * Returns the value of the {@link ConfigurationProperties#SOCKET_LEASE_TIME}
    * property
    */
   @ConfigAttributeGetter(name = SOCKET_LEASE_TIME)
   int getSocketLeaseTime();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}
+   * Sets the value of the {@link ConfigurationProperties#SOCKET_LEASE_TIME}
    * property
    */
   @ConfigAttributeSetter(name = SOCKET_LEASE_TIME)
   void setSocketLeaseTime(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME} property
+   * The default value of the {@link ConfigurationProperties#SOCKET_LEASE_TIME} property
    */
   int DEFAULT_SOCKET_LEASE_TIME = 60000;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}.
+   * The minimum {@link ConfigurationProperties#SOCKET_LEASE_TIME}.
    * <p> Actual value of this constant is <code>0</code>.
    */
   int MIN_SOCKET_LEASE_TIME = 0;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}.
+   * The maximum {@link ConfigurationProperties#SOCKET_LEASE_TIME}.
    * <p> Actual value of this constant is <code>600000</code>.
    */
   int MAX_SOCKET_LEASE_TIME = 600000;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}
+   * Returns the value of the {@link ConfigurationProperties#SOCKET_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = SOCKET_BUFFER_SIZE)
   int getSocketBufferSize();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}
+   * Sets the value of the {@link ConfigurationProperties#SOCKET_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = SOCKET_BUFFER_SIZE)
   void setSocketBufferSize(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE} property
+   * The default value of the {@link ConfigurationProperties#SOCKET_BUFFER_SIZE} property
    */
   int DEFAULT_SOCKET_BUFFER_SIZE = 32768;
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}.
+   * The minimum {@link ConfigurationProperties#SOCKET_BUFFER_SIZE}.
    * <p> Actual value of this constant is <code>1024</code>.
    */
   int MIN_SOCKET_BUFFER_SIZE = 1024;
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}.
+   * The maximum {@link ConfigurationProperties#SOCKET_BUFFER_SIZE}.
    * <p> Actual value of this constant is <code>20000000</code>.
    */
   int MAX_SOCKET_BUFFER_SIZE = Connection.MAX_MSG_SIZE;
@@ -1311,14 +1312,14 @@ public interface DistributionConfig extends Config, LogConfig {
   int VALIDATE_CEILING = Integer.getInteger(DistributionConfig.GEMFIRE_PREFIX + "validateMessageSizeCeiling", 8 * 1024 * 1024).intValue();
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE} property
+   * The name of the {@link ConfigurationProperties#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
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE}
+   * {@link ConfigurationProperties#MCAST_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_SEND_BUFFER_SIZE)
@@ -1326,32 +1327,32 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE}
+   * {@link ConfigurationProperties#MCAST_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_SEND_BUFFER_SIZE)
   void setMcastSendBufferSize(int value);
 
   /**
-   * The default value for  {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE} property
+   * The default value for  {@link ConfigurationProperties#MCAST_SEND_BUFFER_SIZE} property
    */
   int DEFAULT_MCAST_SEND_BUFFER_SIZE = 65535;
 
   /**
-   * The minimum size of the  {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE}, in bytes.
+   * The minimum size of the  {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_SEND_BUFFER_SIZE} property
+   * The name of the {@link ConfigurationProperties#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
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE}
+   * {@link ConfigurationProperties#MCAST_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = MCAST_RECV_BUFFER_SIZE)
@@ -1359,32 +1360,32 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE}
+   * {@link ConfigurationProperties#MCAST_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_RECV_BUFFER_SIZE)
   void setMcastRecvBufferSize(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE} property
+   * The default value of the {@link ConfigurationProperties#MCAST_RECV_BUFFER_SIZE} property
    */
   int DEFAULT_MCAST_RECV_BUFFER_SIZE = 1048576;
 
   /**
-   * The minimum size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE}, in bytes.
+   * The minimum size of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_RECV_BUFFER_SIZE} property
+   * The name of the {@link ConfigurationProperties#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
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL}
+   * {@link ConfigurationProperties#MCAST_FLOW_CONTROL}
    * property.
    */
   @ConfigAttributeGetter(name = MCAST_FLOW_CONTROL)
@@ -1392,57 +1393,57 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL}
+   * {@link ConfigurationProperties#MCAST_FLOW_CONTROL}
    * property
    */
   @ConfigAttributeSetter(name = MCAST_FLOW_CONTROL)
   void setMcastFlowControl(FlowControlParams values);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} property
+   * The name of the {@link ConfigurationProperties#MCAST_FLOW_CONTROL} property
    */
   @ConfigAttribute(type = FlowControlParams.class)
   String MCAST_FLOW_CONTROL_NAME = MCAST_FLOW_CONTROL;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} property
+   * The default value of the {@link ConfigurationProperties#MCAST_FLOW_CONTROL} property
    */
   FlowControlParams DEFAULT_MCAST_FLOW_CONTROL
       = new FlowControlParams(1048576, (float) 0.25, 5000);
 
   /**
-   * The minimum byteAllowance for the{@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
+   * The minimum byteAllowance for the{@link ConfigurationProperties#MCAST_FLOW_CONTROL} setting of
    * <code>100000</code>.
    */
   int MIN_FC_BYTE_ALLOWANCE = 10000;
 
   /**
-   * The minimum rechargeThreshold for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
+   * The minimum rechargeThreshold for the {@link ConfigurationProperties#MCAST_FLOW_CONTROL} setting of
    * <code>0.1</code>
    */
   float MIN_FC_RECHARGE_THRESHOLD = (float) 0.1;
 
   /**
-   * The maximum rechargeThreshold for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
+   * The maximum rechargeThreshold for the {@link ConfigurationProperties#MCAST_FLOW_CONTROL} setting of
    * <code>0.5</code>
    */
   float MAX_FC_RECHARGE_THRESHOLD = (float) 0.5;
 
   /**
-   * The minimum rechargeBlockMs for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
+   * The minimum rechargeBlockMs for the {@link ConfigurationProperties#MCAST_FLOW_CONTROL} setting of
    * <code>500</code>
    */
   int MIN_FC_RECHARGE_BLOCK_MS = 500;
 
   /**
-   * The maximum rechargeBlockMs for the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_FLOW_CONTROL} setting of
+   * The maximum rechargeBlockMs for the {@link ConfigurationProperties#MCAST_FLOW_CONTROL} setting of
    * <code>60000</code>
    */
   int MAX_FC_RECHARGE_BLOCK_MS = 60000;
 
   /**
    * Get the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE}
+   * {@link ConfigurationProperties#UDP_FRAGMENT_SIZE}
    * property.
    */
   @ConfigAttributeGetter(name = UDP_FRAGMENT_SIZE)
@@ -1450,36 +1451,36 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE}
+   * {@link ConfigurationProperties#UDP_FRAGMENT_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = UDP_FRAGMENT_SIZE)
   void setUdpFragmentSize(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} property
+   * The default value of the {@link ConfigurationProperties#UDP_FRAGMENT_SIZE} property
    */
   int DEFAULT_UDP_FRAGMENT_SIZE = 60000;
 
   /**
-   * The minimum allowed {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} setting of 1000
+   * The minimum allowed {@link ConfigurationProperties#UDP_FRAGMENT_SIZE} setting of 1000
    */
   int MIN_UDP_FRAGMENT_SIZE = 1000;
 
   /**
-   * The maximum allowed {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} setting of 60000
+   * The maximum allowed {@link ConfigurationProperties#UDP_FRAGMENT_SIZE} setting of 60000
    */
   int MAX_UDP_FRAGMENT_SIZE = 60000;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_FRAGMENT_SIZE} property
+   * The name of the {@link ConfigurationProperties#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
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE}
+   * {@link ConfigurationProperties#UDP_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = UDP_SEND_BUFFER_SIZE)
@@ -1487,32 +1488,32 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE}
+   * {@link ConfigurationProperties#UDP_SEND_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = UDP_SEND_BUFFER_SIZE)
   void setUdpSendBufferSize(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE} property
+   * The default value of the {@link ConfigurationProperties#UDP_SEND_BUFFER_SIZE} property
    */
   int DEFAULT_UDP_SEND_BUFFER_SIZE = 65535;
 
   /**
-   * The minimum size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE}, in bytes.
+   * The minimum size of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_SEND_BUFFER_SIZE} property
+   * The name of the {@link ConfigurationProperties#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
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}
+   * {@link ConfigurationProperties#UDP_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeGetter(name = UDP_RECV_BUFFER_SIZE)
@@ -1520,58 +1521,58 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}
+   * {@link ConfigurationProperties#UDP_RECV_BUFFER_SIZE}
    * property
    */
   @ConfigAttributeSetter(name = UDP_RECV_BUFFER_SIZE)
   void setUdpRecvBufferSize(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE} property
+   * The default value of the {@link ConfigurationProperties#UDP_RECV_BUFFER_SIZE} property
    */
   int DEFAULT_UDP_RECV_BUFFER_SIZE = 1048576;
 
   /**
-   * The default size of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}
+   * The default size of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE}, in bytes.
+   * The minimum size of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#UDP_RECV_BUFFER_SIZE} property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP}
+   * Returns the value of the {@link ConfigurationProperties#DISABLE_TCP}
    * property
    */
   @ConfigAttributeGetter(name = DISABLE_TCP)
   boolean getDisableTcp();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP}
+   * Sets the value of the {@link ConfigurationProperties#DISABLE_TCP}
    * property.
    */
   @ConfigAttributeSetter(name = DISABLE_TCP)
   void setDisableTcp(boolean newValue);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP} property
+   * The name of the {@link ConfigurationProperties#DISABLE_TCP} property
    */
   @ConfigAttribute(type = Boolean.class)
   String DISABLE_TCP_NAME = DISABLE_TCP;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#DISABLE_TCP} property
+   * The default value of the {@link ConfigurationProperties#DISABLE_TCP} property
    */
   boolean DEFAULT_DISABLE_TCP = false;
 
@@ -1582,70 +1583,70 @@ public interface DistributionConfig extends Config, LogConfig {
   void setEnableTimeStatistics(boolean newValue);
 
   /**
-   * Returns the value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_TIME_STATISTICS}
+   * Returns the value of {@link ConfigurationProperties#ENABLE_TIME_STATISTICS}
    * property
    */
   @ConfigAttributeGetter(name = ENABLE_TIME_STATISTICS)
   boolean getEnableTimeStatistics();
 
   /**
-   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_TIME_STATISTICS} property
+   * the name of the {@link ConfigurationProperties#ENABLE_TIME_STATISTICS} property
    */
   @ConfigAttribute(type = Boolean.class)
   String ENABLE_TIME_STATISTICS_NAME = ENABLE_TIME_STATISTICS;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_TIME_STATISTICS} property
+   * The default value of the {@link ConfigurationProperties#ENABLE_TIME_STATISTICS} property
    */
   boolean DEFAULT_ENABLE_TIME_STATISTICS = false;
 
   /**
    * Sets the value for
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION}
+   * {@link ConfigurationProperties#USE_CLUSTER_CONFIGURATION}
    */
   @ConfigAttributeSetter(name = USE_CLUSTER_CONFIGURATION)
   void setUseSharedConfiguration(boolean newValue);
 
   /**
-   * Returns the value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION}
+   * Returns the value of {@link ConfigurationProperties#USE_CLUSTER_CONFIGURATION}
    * property
    */
   @ConfigAttributeGetter(name = USE_CLUSTER_CONFIGURATION)
   boolean getUseSharedConfiguration();
 
   /**
-   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION} property
+   * the name of the {@link ConfigurationProperties#USE_CLUSTER_CONFIGURATION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String USE_CLUSTER_CONFIGURATION_NAME = USE_CLUSTER_CONFIGURATION;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION} property
+   * The default value of the {@link ConfigurationProperties#USE_CLUSTER_CONFIGURATION} property
    */
   boolean DEFAULT_USE_CLUSTER_CONFIGURATION = true;
 
   /**
    * Sets the value for
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION}
+   * {@link ConfigurationProperties#ENABLE_CLUSTER_CONFIGURATION}
    */
   @ConfigAttributeSetter(name = ENABLE_CLUSTER_CONFIGURATION)
   void setEnableClusterConfiguration(boolean newValue);
 
   /**
-   * Returns the value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION}
+   * Returns the value of {@link ConfigurationProperties#ENABLE_CLUSTER_CONFIGURATION}
    * property
    */
   @ConfigAttributeGetter(name = ENABLE_CLUSTER_CONFIGURATION)
   boolean getEnableClusterConfiguration();
 
   /**
-   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION} property
+   * the name of the {@link ConfigurationProperties#ENABLE_CLUSTER_CONFIGURATION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String ENABLE_CLUSTER_CONFIGURATION_NAME = ENABLE_CLUSTER_CONFIGURATION;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION} property
+   * The default value of the {@link ConfigurationProperties#ENABLE_CLUSTER_CONFIGURATION} property
    */
   boolean DEFAULT_ENABLE_CLUSTER_CONFIGURATION = true;
 
@@ -1655,7 +1656,7 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Returns the value of
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOAD_CLUSTER_CONFIGURATION_FROM_DIR}
+   * {@link ConfigurationProperties#LOAD_CLUSTER_CONFIGURATION_FROM_DIR}
    * property
    */
   @ConfigAttributeGetter(name = LOAD_CLUSTER_CONFIGURATION_FROM_DIR)
@@ -1663,7 +1664,7 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Sets the value of
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOAD_CLUSTER_CONFIGURATION_FROM_DIR}
+   * {@link ConfigurationProperties#LOAD_CLUSTER_CONFIGURATION_FROM_DIR}
    * property
    */
   @ConfigAttributeSetter(name = LOAD_CLUSTER_CONFIGURATION_FROM_DIR)
@@ -1687,13 +1688,13 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Returns the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_NETWORK_PARTITION_DETECTION} property
+   * {@link ConfigurationProperties#ENABLE_NETWORK_PARTITION_DETECTION} property
    */
   @ConfigAttributeGetter(name = ENABLE_NETWORK_PARTITION_DETECTION)
   boolean getEnableNetworkPartitionDetection();
 
   /**
-   * the name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_NETWORK_PARTITION_DETECTION} property
+   * the name of the {@link ConfigurationProperties#ENABLE_NETWORK_PARTITION_DETECTION} property
    */
   @ConfigAttribute(type = Boolean.class)
   String ENABLE_NETWORK_PARTITION_DETECTION_NAME = ENABLE_NETWORK_PARTITION_DETECTION;
@@ -1701,7 +1702,7 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Get the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT}
+   * {@link ConfigurationProperties#MEMBER_TIMEOUT}
    * property
    */
   @ConfigAttributeGetter(name = MEMBER_TIMEOUT)
@@ -1709,28 +1710,28 @@ public interface DistributionConfig extends Config, LogConfig {
 
   /**
    * Set the value of the
-   * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT}
+   * {@link ConfigurationProperties#MEMBER_TIMEOUT}
    * property
    */
   @ConfigAttributeSetter(name = MEMBER_TIMEOUT)
   void setMemberTimeout(int value);
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} property
+   * The default value of the {@link ConfigurationProperties#MEMBER_TIMEOUT} property
    */
   int DEFAULT_MEMBER_TIMEOUT = 5000;
 
   /**
-   * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} setting of 1000 milliseconds
+   * The minimum {@link ConfigurationProperties#MEMBER_TIMEOUT} setting of 1000 milliseconds
    */
   int MIN_MEMBER_TIMEOUT = 10;
 
   /**
-   * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} setting of 600000 millieseconds
+   * The maximum {@link ConfigurationProperties#MEMBER_TIMEOUT} setting of 600000 millieseconds
    */
   int MAX_MEMBER_TIMEOUT = 600000;
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MEMBER_TIMEOUT} property
+   * The name of the {@link ConfigurationProperties#MEMBER_TIMEOUT} property
    */
   @ConfigAttribute(type = Integer.class, min = MIN_MEMBER_TIMEOUT, max = MAX_MEMBER_TIMEOUT)
   String MEMBER_TIMEOUT_NAME = MEMBER_TIMEOUT;
@@ -1747,97 +1748,97 @@ public interface DistributionConfig extends Config, LogConfig {
   void setMembershipPortRange(int[] range);
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS}
+   * Returns the value of the {@link ConfigurationProperties#CONSERVE_SOCKETS}
    * property
    */
   @ConfigAttributeGetter(name = CONSERVE_SOCKETS)
   boolean getConserveSockets();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS}
+   * Sets the value of the {@link ConfigurationProperties#CONSERVE_SOCKETS}
    * property.
    */
   @ConfigAttributeSetter(name = CONSERVE_SOCKETS)
   void setConserveSockets(boolean newValue);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS} property
+   * The name of the {@link ConfigurationProperties#CONSERVE_SOCKETS} property
    */
   @ConfigAttribute(type = Boolean.class)
   String CONSERVE_SOCKETS_NAME = CONSERVE_SOCKETS;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#CONSERVE_SOCKETS} property
+   * The default value of the {@link ConfigurationProperties#CONSERVE_SOCKETS} property
    */
   boolean DEFAULT_CONSERVE_SOCKETS = true;
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES}
+   * Returns the value of the {@link ConfigurationProperties#ROLES}
    * property
    */
   @ConfigAttributeGetter(name = ROLES)
   String getRoles();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES}
+   * Sets the value of the {@link ConfigurationProperties#ROLES}
    * property.
    */
   @ConfigAttributeSetter(name = ROLES)
   void setRoles(String roles);
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES} property
+   * The name of the {@link ConfigurationProperties#ROLES} property
    */
   @ConfigAttribute(type = String.class)
   String ROLES_NAME = ROLES;
 
   /**
-   * The default value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES} property
+   * The default value of the {@link ConfigurationProperties#ROLES} property
    */
   String DEFAULT_ROLES = "";
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT} property
+   * The name of the {@link ConfigurationProperties#MAX_WAIT_TIME_RECONNECT} property
    */
   @ConfigAttribute(type = Integer.class)
   String MAX_WAIT_TIME_FOR_RECONNECT_NAME = MAX_WAIT_TIME_RECONNECT;
 
   /**
-   * Default value for {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT}, 60,000 milliseconds.
+   * Default value for {@link ConfigurationProperties#MAX_WAIT_TIME_RECONNECT}, 60,000 milliseconds.
    */
   int DEFAULT_MAX_WAIT_TIME_FOR_RECONNECT = 60000;
 
   /**
-   * Sets the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT}, in milliseconds, for reconnect.
+   * Sets the {@link ConfigurationProperties#MAX_WAIT_TIME_RECONNECT}, in milliseconds, for reconnect.
    */
   @ConfigAttributeSetter(name = MAX_WAIT_TIME_RECONNECT)
   void setMaxWaitTimeForReconnect(int timeOut);
 
   /**
-   * Returns the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_WAIT_TIME_RECONNECT}, in milliseconds, for reconnect.
+   * Returns the {@link ConfigurationProperties#MAX_WAIT_TIME_RECONNECT}, in milliseconds, for reconnect.
    */
   @ConfigAttributeGetter(name = MAX_WAIT_TIME_RECONNECT)
   int getMaxWaitTimeForReconnect();
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES} property.
+   * The name of the {@link ConfigurationProperties#MAX_NUM_RECONNECT_TRIES} property.
    */
   @ConfigAttribute(type = Integer.class)
   String MAX_NUM_RECONNECT_TRIES_NAME = MAX_NUM_RECONNECT_TRIES;
 
   /**
-   * Default value for {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES}.
+   * Default value for {@link ConfigurationProperties#MAX_NUM_RECONNECT_TRIES}.
    */
   int DEFAULT_MAX_NUM_RECONNECT_TRIES = 3;
 
   /**
-   * Sets the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES}.
+   * Sets the {@link ConfigurationProperties#MAX_NUM_RECONNECT_TRIES}.
    */
   @ConfigAttributeSetter(name = MAX_NUM_RECONNECT_TRIES)
   void setMaxNumReconnectTries(int tries);
 
   /**
-   * Returns the value for {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MAX_NUM_RECONNECT_TRIES}.
+   * Returns the value for {@link ConfigurationProperties#MAX_NUM_RECONNECT_TRIES}.
    */
   @ConfigAttributeGetter(name = MAX_NUM_RECONNECT_TRIES)
   int getMaxNumReconnectTries();
@@ -1845,93 +1846,93 @@ public interface DistributionConfig extends Config, LogConfig {
   // ------------------- Asynchronous Messaging Properties -------------------
 
   /**
-   * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT} property.
+   * Returns the value of the {@link ConfigurationProperties#ASYNC_DISTRIBUTION_TIMEOUT} property.
    */
   @ConfigAttributeGetter(name = ASYNC_DISTRIBUTION_TIMEOUT)
   int getAsyncDistributionTimeout();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  property.
+   * Sets the value of the {@link ConfigurationProperties#ASYNC_DISTRIBUTION_TIMEOUT}  property.
    */
   @ConfigAttributeSetter(name = ASYNC_DISTRIBUTION_TIMEOUT)
   void setAsyncDistributionTimeout(int newValue);
 
   /**
-   * The default value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>0</code>.
+   * The default value of {@link ConfigurationProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>0</code>.
    */
   int DEFAULT_ASYNC_DISTRIBUTION_TIMEOUT = 0;
   /**
-   * The minimum value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>0</code>.
+   * The minimum value of {@link ConfigurationProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>0</code>.
    */
   int MIN_ASYNC_DISTRIBUTION_TIMEOUT = 0;
   /**
-   * The maximum value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>60000</code>.
+   * The maximum value of {@link ConfigurationProperties#ASYNC_DISTRIBUTION_TIMEOUT}  is <code>60000</code>.
    */
   int MAX_ASYNC_DISTRIBUTION_TIMEOUT = 60000;
 
   /**
-   * The name of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT}  property
+   * The name of the {@link ConfigurationProperties#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 {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_QUEUE_TIMEOUT}  property.
+   * Returns the value of the {@link ConfigurationProperties#ASYNC_QUEUE_TIMEOUT}  property.
    */
   @ConfigAttributeGetter(name = ASYNC_QUEUE_TIMEOUT)
   int getAsyncQueueTimeout();
 
   /**
-   * Sets the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_QUEUE_TIMEOUT} property.
+   * Sets the value of the {@link ConfigurationProperties#ASYNC_QUEUE_TIMEOUT} property.
    */
   @ConfigAttributeSetter(name = ASYNC_QUEUE_TIMEOUT)
   void setAsyncQueueTimeout(int newValue);
 
   /**
-   * The default value of {@link com.gemstone.gemfire.distri

<TRUNCATED>