Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 80F80200AF7 for ; Tue, 14 Jun 2016 21:10:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7F8F5160A06; Tue, 14 Jun 2016 19:10:37 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 38A36160A5F for ; Tue, 14 Jun 2016 21:10:35 +0200 (CEST) Received: (qmail 40431 invoked by uid 500); 14 Jun 2016 19:10:34 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 40422 invoked by uid 99); 14 Jun 2016 19:10:34 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2016 19:10:34 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id D944F18057B for ; Tue, 14 Jun 2016 19:10:33 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -5.436 X-Spam-Level: X-Spam-Status: No, score=-5.436 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426, T_FILL_THIS_FORM_SHORT=0.01] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id sugaaz_eawD1 for ; Tue, 14 Jun 2016 19:10:17 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with SMTP id 4C29660CD1 for ; Tue, 14 Jun 2016 19:10:14 +0000 (UTC) Received: (qmail 34366 invoked by uid 99); 14 Jun 2016 19:10:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2016 19:10:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 17625DFF13; Tue, 14 Jun 2016 19:10:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sai_boorlagadda@apache.org To: commits@geode.incubator.apache.org Date: Tue, 14 Jun 2016 19:11:07 -0000 Message-Id: <3a2f1e235f644763a0884835689b59d0@git.apache.org> In-Reply-To: <0f37fed0a7ca4cbbacc4deb855d88529@git.apache.org> References: <0f37fed0a7ca4cbbacc4deb855d88529@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [57/90] [abbrv] incubator-geode git commit: GEODE-1377: Updating JavaDocs to point to the correct property definitions archived-at: Tue, 14 Jun 2016 19:10:37 -0000 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. - * - *

- * - * Decriptions of these properties can be found here. + *

+ *

+ *

+ * 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 "name" 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 "mcast-port" + * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT} * property */ @ConfigAttributeGetter(name = MCAST_PORT_NAME) int getMcastPort(); /** - * Sets the value of the "mcast-port" + * 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}. *

Actual value of this constant is 0. */ int MIN_MCAST_PORT = 0; /** - * The maximum mcastPort. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_PORT}. *

Actual value of this constant is 65535. */ 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 "tcp-port" + * 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 "tcp-port" + * 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}. *

Actual value of this constant is 0. */ int MIN_TCP_PORT = 0; /** - * The maximum tcpPort. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#TCP_PORT}. *

Actual value of this constant is 65535. */ 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 "mcast-address" + * 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 "mcast-address" + * 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 239.192.81.1 */ InetAddress DEFAULT_MCAST_ADDRESS = AbstractDistributionConfig._getDefaultMcastAddress(); /** - * Returns the value of the "mcast-ttl" + * 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 "mcast-ttl" + * 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}. *

Actual value of this constant is 0. */ int MIN_MCAST_TTL = 0; /** - * The maximum mcastTtl. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#MCAST_TTL}. *

Actual value of this constant is 255. */ 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 "bind-address" + * 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 "bind-address" + * 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 "" */ String DEFAULT_BIND_ADDRESS = ""; /** - * Returns the value of the "server-bind-address" + * 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 "server-bind-address" + * 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 "" */ String DEFAULT_SERVER_BIND_ADDRESS = ""; /** - * Returns the value of the "locators" 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 "start-locator" - * 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 "deploy-working-dir" 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 "user-command-packages" 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 "log-file" property + * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#LOG_FILE} property * * @return null 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}. *

Actual value of this constant is "" which directs * log message to standard output. */ File DEFAULT_LOG_FILE = new File(""); /** - * Returns the value of the "log-level" 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 "log-level" 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}. *

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}. *

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}. *

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 "statistic-sampling-enabled" + * 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 "statistic-sample-rate" + * 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 "statistic-sample-rate" + * 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}. *

Actual value of this constant is 1000 milliseconds. */ int DEFAULT_STATISTIC_SAMPLE_RATE = 1000; /** - * The minimum statistic sample rate. + * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}. *

Actual value of this constant is 100 milliseconds. */ int MIN_STATISTIC_SAMPLE_RATE = 100; /** - * The maximum statistic sample rate. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_SAMPLE_RATE}. *

Actual value of this constant is 60000 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 "statistic-archive-file" property. + * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#STATISTIC_ARCHIVE_FILE} property. * * @return null if no file was specified */ @@ -577,62 +552,58 @@ public interface DistributionConfig extends Config, LogConfig { File getStatisticArchiveFile(); /** - * Sets the value of the "statistic-archive-file" 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}. *

Actual value of this constant is "" which * causes no archive file to be created. */ File DEFAULT_STATISTIC_ARCHIVE_FILE = new File(""); // fix for bug 29786 /** - * Returns the value of the "cache-xml-file" + * 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 "cache-xml-file" + * 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 "ack-wait-threshold" + * 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 "ack-wait-threshold" + * 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}. *

Actual value of this constant is 15 seconds. */ int DEFAULT_ACK_WAIT_THRESHOLD = 15; /** - * The minimum AckWaitThreshold. + * The minimum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}. *

Actual value of this constant is 1 second. */ int MIN_ACK_WAIT_THRESHOLD = 1; /** - * The maximum AckWaitThreshold. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ACK_WAIT_THRESHOLD}. *

Actual value of this constant is MAX_INT 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 "ack-severe-alert-threshold" + * 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 "ack-severe-alert-threshold" + * 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is MAX_INT 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 "archive-file-size-limit" + * 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 "archive-file-size-limit" + * 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 1000000 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 "archive-disk-space-limit" + * 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 "archive-disk-space-limit" + * 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 1000000 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 "log-file-size-limit" + * 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 "log-file-size-limit" + * 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 1000000 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 "log-disk-space-limit" + * 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 "log-disk-space-limit" + * 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 0 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}. *

Actual value of this constant is 1000000 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 "ssl-enabled" + * 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. *

Actual value of this constant is false. * * @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 "ssl-enabled" + * 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 "ssl-protocols" + * 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 "ssl-protocols" + * 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. *

Actual value of this constant is any. * * @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 "ssl-ciphers" + * 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 "ssl-ciphers" + * 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. *

Actual value of this constant is any. * * @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 "ssl-require-authentication" + * 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 "ssl-require-authentication" + * 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. *

Actual value of this constant is true. * * @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 "cluster-ssl-enabled" + * 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 "cluster-ssl-enabled" + * 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. *

Actual value of this constant is false. */ 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 "cluster-ssl-protocols" + * 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 "cluster-ssl-protocols" + * 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. *

Actual value of this constant is any. */ 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 "cluster-ssl-ciphers" + * 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 "cluster-ssl-ciphers" + * 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. *

Actual value of this constant is any. */ 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 "cluster-ssl-require-authentication" + * 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 "cluster-ssl-require-authentication" + * 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. *

Actual value of this constant is true. */ 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 "cluster-ssl-keystore" + * 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 "cluster-ssl-keystore" + * 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. *

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 "cluster-ssl-keystore-type" + * 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 "cluster-ssl-keystore-type" + * 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. *

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 "cluster-ssl-keystore-password" + * 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 "cluster-ssl-keystore-password" + * 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. *

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 "cluster-ssl-truststore" + * 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 "cluster-ssl-truststore" + * 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. *

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 "cluster-ssl-truststore-password" + * 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 "cluster-ssl-truststore-password" + * 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. *

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 "socket-lease-time" + * 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 "socket-lease-time" + * 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}. *

Actual value of this constant is 0. */ int MIN_SOCKET_LEASE_TIME = 0; /** - * The maximum socketLeaseTime. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_LEASE_TIME}. *

Actual value of this constant is 600000. */ 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 "socket-buffer-size" + * 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 "socket-buffer-size" + * 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}. *

Actual value of this constant is 1024. */ int MIN_SOCKET_BUFFER_SIZE = 1024; /** - * The maximum socketBufferSize. + * The maximum {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#SOCKET_BUFFER_SIZE}. *

Actual value of this constant is 20000000. */ 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 - * "mcast-send-buffer-size" + * {@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 - * "mcast-send-buffer-size" + * {@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. *

Actual value of this constant is 2048. */ 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 - * "mcast-recv-buffer-size" + * {@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 - * "mcast-recv-buffer-size" + * {@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. *

Actual value of this constant is 2048. */ 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 - * "mcast-flow-control" + * {@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 - * "mcast-flow-control" + * {@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 * 100000. */ 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 * 0.1 */ 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 * 0.5 */ 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 * 500 */ 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 * 60000 */ int MAX_FC_RECHARGE_BLOCK_MS = 60000; /** * Get the value of the - * "udp-fragment-size" + * {@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 - * "udp-fragment-size" + * {@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 - * "udp-send-buffer-size" + * {@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 - * "udp-send-buffer-size" + * {@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. *

Actual value of this constant is 2048. */ 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 - * "udp-recv-buffer-size" + * {@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 - * "udp-recv-buffer-size" + * {@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. *

Actual value of this constant is 2048. */ 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 "disable-tcp" + * 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 "disable-tcp" + * 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 enable-time-statistics + * 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 - * use-shared-configuration + * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#USE_CLUSTER_CONFIGURATION} */ @ConfigAttributeSetter(name = USE_CLUSTER_CONFIGURATION) void setUseSharedConfiguration(boolean newValue); /** - * Returns the value of use-cluster-configuration + * 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 - * enable-cluster-configuration + * {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ENABLE_CLUSTER_CONFIGURATION} */ @ConfigAttributeSetter(name = ENABLE_CLUSTER_CONFIGURATION) void setEnableClusterConfiguration(boolean newValue); /** - * Returns the value of enable-cluster-configuration + * 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 - * cluster-configuration-dir + * {@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 - * cluster-configuration-dir + * {@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 - * "member-timeout" + * {@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 - * "member-timeout" + * {@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 "conserve-sockets" + * 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 "conserve-sockets" + * 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 "roles" + * Returns the value of the {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ROLES} * property */ @ConfigAttributeGetter(name = ROLES) String getRoles(); /** - * Sets the value of the "roles" + * 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 - * "async-distribution-timeout" 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 - * "async-distribution-timeout" 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 0. + * The default value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT} is 0. */ int DEFAULT_ASYNC_DISTRIBUTION_TIMEOUT = 0; /** - * The minimum value of "asyncDistributionTimeout" is 0. + * The minimum value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT} is 0. */ int MIN_ASYNC_DISTRIBUTION_TIMEOUT = 0; /** - * The maximum value of "asyncDistributionTimeout" is 60000. + * The maximum value of {@link com.gemstone.gemfire.distributed.DistributedSystemConfigProperties#ASYNC_DISTRIBUTION_TIMEOUT} is 60000. */ 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 - * "async-queue-timeout" 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 - * "async-queue-timeout" 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 60000. + * The default value of {@link com.gemstone