[ 
https://issues.apache.org/jira/browse/GEODE-1608?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kirk Lund updated GEODE-1608:
-----------------------------
    Labels: javadocs  (was: )

> update javadocs given the new ConfigurationProperties interface
> ---------------------------------------------------------------
>
>                 Key: GEODE-1608
>                 URL: https://issues.apache.org/jira/browse/GEODE-1608
>             Project: Geode
>          Issue Type: Bug
>            Reporter: Karen Smoler Miller
>              Labels: javadocs
>
> With the new {{ConfigurationProperties}} interface, any/all javadocs that 
> contain example code that uses a string literal for one of the defined 
> properties, instead of its new static String definition should be changed.
> For example, Example 3 of the javadocs for `CacheFactory`:
> {code:java}
> Cache c = new CacheFactory()
>     .set("cache-xml-file", "myCache.xml")
>     .create();
> Region r = c.getRegion("myRegion");
> {code}
> should be changed to:
> {code:java}
> Cache c = new CacheFactory()
>     .set(CACHE_XML_FILE, "myCache.xml")
>     .create();
> Region r = c.getRegion("myRegion");
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to