keith-turner opened a new issue #900: Document properties in FluoConfiguration 
javadoc
URL: https://github.com/apache/fluo/issues/900
 
 
   In #899  I added the following methods to FluoConfiguration.  Would be nice 
to add the info about the property being set or got to all methods.
   
   ```java
     /**
      * Get the secret configured to access data in zookeeper. If the secret is 
an empty string, then
      * nothing in zookeeper is locked down.
      *
      * <p>
      * Gets the value of the property {@value #CONNECTION_ZOOKEEPER_SECRET}
      *
      * @since 1.2.0
      */
     public String getZookeeperSecret() {
       return getString(CONNECTION_ZOOKEEPER_SECRET, "");
     }
   
     /**
      * Setting this before initializing an application will cause Fluo to lock 
down Zookeeper such
      * that this secret is required to read data from zookeeper. If set to an 
empty string, then
      * nothing in zookeeper will be locked down. This property defaults to an 
empty string.
      *
      * <p>
      * Sets the value of the property {@value #CONNECTION_ZOOKEEPER_SECRET}
      *
      * @since 1.2.0
      */
     public void setZookeeperSecret(String secret) {
       setProperty(CONNECTION_ZOOKEEPER_SECRET, 
verifyNotNull(CONNECTION_ZOOKEEPER_SECRET, secret));
     }
   ```
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to