Uploaded image for project: 'Geode'
  1. Geode
  2. GEODE-1608

update javadocs given the new ConfigurationProperties interface

    XMLWordPrintableJSON

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");
      

      Attachments

        Activity

          People

            Unassigned Unassigned
            karensmolermiller Karen Smoler Miller
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: