Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
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`:
Cache c = new CacheFactory() .set("cache-xml-file", "myCache.xml") .create(); Region r = c.getRegion("myRegion");
should be changed to:
Cache c = new CacheFactory() .set(CACHE_XML_FILE, "myCache.xml") .create(); Region r = c.getRegion("myRegion");