You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ja...@apache.org on 2016/05/31 17:11:10 UTC

[25/29] incubator-geode git commit: GEODE-1316: Changing @since tags to @GemFire or @Geode

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAction.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAction.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAction.java
index b6957a9..8bc1aaf 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAction.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAction.java
@@ -19,7 +19,7 @@ package com.gemstone.gemfire.cache;
 import javax.print.attribute.EnumSyntax;
 /**
  * The action that an {@link com.gemstone.gemfire.cache.EvictionAlgorithm} takes.
- * @since 5.0
+ * @since GemFire 5.0
  * @see com.gemstone.gemfire.cache.EvictionAlgorithm
  * @see com.gemstone.gemfire.internal.cache.EvictionAttributesImpl
  */
@@ -84,7 +84,7 @@ public final class EvictionAction extends EnumSyntax
   /**
    * Returns the eviction action the corresponds to the given parameter.
    * Returns <code>null</code> if no action corresponds.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public static EvictionAction parseValue(int v) {
     if (v < 0 || v >= enumValueTable.length) {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAlgorithm.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAlgorithm.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAlgorithm.java
index 3911431..0ec010e 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAlgorithm.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAlgorithm.java
@@ -20,7 +20,7 @@ import javax.print.attribute.EnumSyntax;
 
 /** The algorithm used to determine when to perform an {@link com.gemstone.gemfire.cache.EvictionAction}
  * 
- * @since 5.0
+ * @since GemFire 5.0
  * @see com.gemstone.gemfire.cache.EvictionAction
  * @see com.gemstone.gemfire.internal.cache.EvictionAttributesImpl
  */
@@ -98,7 +98,7 @@ public final class EvictionAlgorithm extends EnumSyntax
   /**
    * Returns the eviction action the corresponds to the given parameter.
    * Returns <code>null</code> if no action corresponds.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public static EvictionAlgorithm parseValue(int v) {
     if (v < 0 || v >= enumValueTable.length) {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributes.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributes.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributes.java
index cc286e8..5f086ca 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributes.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributes.java
@@ -30,7 +30,7 @@ import com.gemstone.gemfire.internal.cache.EvictionAttributesImpl;
  *
  * @see com.gemstone.gemfire.cache.AttributesFactory#setEvictionAttributes(EvictionAttributes)
  * @see com.gemstone.gemfire.cache.AttributesMutator
- * @since 5.0
+ * @since GemFire 5.0
  */
 @SuppressWarnings("serial")
 public abstract class EvictionAttributes implements DataSerializable {
@@ -110,7 +110,7 @@ public abstract class EvictionAttributes implements DataSerializable {
    * with default {@linkplain #DEFAULT_ENTRIES_MAXIMUM maximum}
    * and given <code>evictionAction</code>
    * @see #createLRUEntryAttributes()
-   * @since 8.1
+   * @since GemFire 8.1
    */
   public static EvictionAttributes createLRUEntryAttributes(EvictionAction evictionAction) {
     return new EvictionAttributesImpl().setAlgorithm(EvictionAlgorithm.LRU_ENTRY).setAction(evictionAction)
@@ -363,7 +363,7 @@ public abstract class EvictionAttributes implements DataSerializable {
    * given <code>sizer</code>,
    * and default {@linkplain #DEFAULT_MEMORY_MAXIMUM maximum}
    * @see #createLRUMemoryAttributes()
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public static EvictionAttributes createLRUMemoryAttributes(ObjectSizer sizer) {
     return new EvictionAttributesImpl().setAlgorithm(EvictionAlgorithm.LRU_MEMORY).setAction(
@@ -388,7 +388,7 @@ public abstract class EvictionAttributes implements DataSerializable {
    * given <code>sizer</code>,
    * and default {@linkplain #DEFAULT_MEMORY_MAXIMUM maximum}
    * @see #createLRUMemoryAttributes()
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public static EvictionAttributes createLRUMemoryAttributes(ObjectSizer sizer, EvictionAction evictionAction) {
     return new EvictionAttributesImpl().setAlgorithm(EvictionAlgorithm.LRU_MEMORY).setAction(evictionAction)
@@ -474,7 +474,7 @@ public abstract class EvictionAttributes implements DataSerializable {
 
   /**
    * @return an EvictionAttributes for the  LIFOCapacityController
-   * @since 5.7
+   * @since GemFire 5.7
    */
   public static EvictionAttributes createLIFOEntryAttributes(int maximumEntries, EvictionAction evictionAction) {
     return new EvictionAttributesImpl().setAlgorithm(EvictionAlgorithm.LIFO_ENTRY).setAction(evictionAction)
@@ -483,7 +483,7 @@ public abstract class EvictionAttributes implements DataSerializable {
 
   /**
    * @return an EvictionAttributes for the MemLIFOCapacityController
-   * @since 5.7
+   * @since GemFire 5.7
    */
   public static EvictionAttributes createLIFOMemoryAttributes(int maximumMegabytes, EvictionAction evictionAction) {
     return new EvictionAttributesImpl().setAlgorithm(EvictionAlgorithm.LIFO_MEMORY).setAction(evictionAction)

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributesMutator.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributesMutator.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributesMutator.java
index 77dcab7..9f4af59 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributesMutator.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/EvictionAttributesMutator.java
@@ -22,7 +22,7 @@ import com.gemstone.gemfire.internal.cache.EvictionAttributesImpl;
  * The EvictionAttributesMutator allows changes to be made to a 
  * {@link com.gemstone.gemfire.cache.EvictionAttributes}. It is returned
  * by {@link com.gemstone.gemfire.cache.AttributesMutator#getEvictionAttributesMutator()}
- * @since 5.0
+ * @since GemFire 5.0
  */
 public interface EvictionAttributesMutator
 {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAction.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAction.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAction.java
index f16820b..dace6c0 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAction.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAction.java
@@ -26,7 +26,7 @@ import java.io.*;
  *
  *
  * @see ExpirationAttributes
- * @since 3.0
+ * @since GemFire 3.0
  */
 public class ExpirationAction implements Serializable {
     private static final long serialVersionUID = 658925707882047900L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAttributes.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAttributes.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAttributes.java
index 1c463f7..ad854e7 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAttributes.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/ExpirationAttributes.java
@@ -35,7 +35,7 @@ import com.gemstone.gemfire.internal.InternalDataSerializer;
  * @see AttributesFactory
  * @see RegionAttributes
  * @see AttributesMutator
- * @since 3.0
+ * @since GemFire 3.0
  */
 public class ExpirationAttributes implements DataSerializable { 
   private static final long serialVersionUID = 5956885652945706394L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
index ee22889..7c44307 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
@@ -31,7 +31,7 @@ import javax.transaction.UserTransaction;
  * @see UserTransaction#setRollbackOnly
  * @see Transaction#registerSynchronization
  * @see Status
- * @since 4.0
+ * @since GemFire 4.0
  */
 public class FailedSynchronizationException extends CacheRuntimeException {
 private static final long serialVersionUID = -6225053492344591496L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionAttributes.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionAttributes.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionAttributes.java
index 69bbfc7..cb648db 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionAttributes.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionAttributes.java
@@ -31,7 +31,7 @@ import com.gemstone.gemfire.internal.cache.FixedPartitionAttributesImpl;
  * @see com.gemstone.gemfire.cache.PartitionAttributes
  * @see com.gemstone.gemfire.cache.PartitionAttributesFactory
  * 
- * @since 6.6
+ * @since GemFire 6.6
  */
 
 public abstract class FixedPartitionAttributes {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionResolver.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionResolver.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionResolver.java
index 9450856..db77807 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionResolver.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/FixedPartitionResolver.java
@@ -54,7 +54,7 @@ import java.util.Set;
  * &nbsp }<br>
  *
  * @see PartitionResolver
- * @since 6.6
+ * @since GemFire 6.6
  *
  * 
  */

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayConfigurationException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayConfigurationException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayConfigurationException.java
index f89c3e5..954d6c8 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayConfigurationException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayConfigurationException.java
@@ -20,7 +20,7 @@ package com.gemstone.gemfire.cache;
 /**
  * An exception indicating that a gateway configuration
  * will not work with the remote side of the gateway's configuration.
- * @since 6.6
+ * @since GemFire 6.6
  */
 public class GatewayConfigurationException extends GatewayException {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayException.java
index 93bc723..f8a9d0e 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/GatewayException.java
@@ -21,7 +21,7 @@ package com.gemstone.gemfire.cache;
  * An exception thrown by a <code>Gateway</code>.
  *
  *
- * @since 4.2
+ * @since GemFire 4.2
  */
 public class GatewayException extends OperationAbortedException {
 private static final long serialVersionUID = 8090143153569084886L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/GemFireCache.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/GemFireCache.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/GemFireCache.java
index 96a8ce6..b1ac678 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/GemFireCache.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/GemFireCache.java
@@ -42,7 +42,7 @@ import com.gemstone.gemfire.pdx.PdxSerializer;
  * <li> {@link ClientCacheFactory#create()} creates a client instance of {@link ClientCache}.
  * </ul>
  *
- * @since 6.5
+ * @since GemFire 6.5
  */
 public interface GemFireCache extends RegionService {
   /** Returns the name of this cache.
@@ -62,14 +62,14 @@ public interface GemFireCache extends RegionService {
    * resources.
    * 
    * @return <code>ResourceManager</code> for managing this cache's resources
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public ResourceManager getResourceManager();
 
   /**
    * Sets the "copy on read" feature for cache read operations.
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public void setCopyOnRead(boolean copyOnRead);
 
@@ -78,7 +78,7 @@ public interface GemFireCache extends RegionService {
    * 
    * @return true if "copy on read" is enabled, false otherwise.
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public boolean getCopyOnRead();
 
@@ -89,7 +89,7 @@ public interface GemFireCache extends RegionService {
    *
    * @see #setRegionAttributes
    *
-   * @since 4.1
+   * @since GemFire 4.1
    */
   public <K,V> RegionAttributes<K,V> getRegionAttributes(String id);
 
@@ -110,7 +110,7 @@ public interface GemFireCache extends RegionService {
    *
    * @see #getRegionAttributes
    *
-   * @since 4.1
+   * @since GemFire 4.1
    */
   public <K,V> void setRegionAttributes(String id, RegionAttributes<K,V> attrs);
 
@@ -119,7 +119,7 @@ public interface GemFireCache extends RegionService {
    * keys of the map are {@link String}s and the values of the map are
    * {@link RegionAttributes}.
    *
-   * @since 4.1
+   * @since GemFire 4.1
    */
   public <K,V> Map<String, RegionAttributes<K,V>> listRegionAttributes();
 
@@ -143,7 +143,7 @@ public interface GemFireCache extends RegionService {
    *         the dtd or if an <code>IOException</code> occurs while
    *         reading the XML.
    *
-   * @since 4.1
+   * @since GemFire 4.1
    */
   public void loadCacheXml(InputStream is) 
     throws TimeoutException, CacheWriterException,
@@ -170,14 +170,14 @@ public interface GemFireCache extends RegionService {
    * Returns the DiskStore by name or <code>null</code> if no disk store is found.
    * @param name the name of the disk store to find. If <code>null</code> then the
    * default disk store, if it exists, is returned.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public DiskStore findDiskStore(String name);
   
   /**
    * create diskstore factory 
    * 
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public DiskStoreFactory createDiskStoreFactory();
   
@@ -188,7 +188,7 @@ public interface GemFireCache extends RegionService {
    * @see com.gemstone.gemfire.cache.CacheFactory#setPdxReadSerialized(boolean)
    * @see com.gemstone.gemfire.cache.client.ClientCacheFactory#setPdxReadSerialized(boolean)
    * 
-   * @since 6.6
+   * @since GemFire 6.6
    */
   public boolean getPdxReadSerialized();
   
@@ -196,7 +196,7 @@ public interface GemFireCache extends RegionService {
    * Returns the PdxSerializer used by this cache, or null
    * if no PDX serializer is defined.
    * 
-   * @since 6.6
+   * @since GemFire 6.6
    * @see CacheFactory#setPdxSerializer(PdxSerializer)
    * @see ClientCacheFactory#setPdxSerializer(PdxSerializer)
    */
@@ -204,7 +204,7 @@ public interface GemFireCache extends RegionService {
   
   /**
    * Returns the disk store used for PDX meta data
-   * @since 6.6
+   * @since GemFire 6.6
    * @see CacheFactory#setPdxDiskStore(String)
    * @see ClientCacheFactory#setPdxDiskStore(String)
    */
@@ -213,7 +213,7 @@ public interface GemFireCache extends RegionService {
   /**
    * Returns true if the PDX metadata for this
    * cache is persistent
-   * @since 6.6
+   * @since GemFire 6.6
    * @see CacheFactory#setPdxPersistent(boolean)
    * @see ClientCacheFactory#setPdxPersistent(boolean)
    */
@@ -221,7 +221,7 @@ public interface GemFireCache extends RegionService {
   /**
    * Returns true if fields that are not read during PDX deserialization
    * should be ignored during the PDX serialization.
-   * @since 6.6
+   * @since GemFire 6.6
    * @see CacheFactory#setPdxIgnoreUnreadFields(boolean)
    * @see ClientCacheFactory#setPdxIgnoreUnreadFields(boolean)
    */
@@ -233,7 +233,7 @@ public interface GemFireCache extends RegionService {
    *
    * @throws CacheClosedException if the cache is closed.
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public CacheTransactionManager getCacheTransactionManager();
   /**
@@ -241,21 +241,21 @@ public interface GemFireCache extends RegionService {
    * @return javax.naming.Context
    * Added as part of providing JTA implementation in Gemfire.
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public Context getJNDIContext();
 
   /**
    * Returns the Declarable used to initialize this cache or <code>null</code>
    * if it does not have an initializer.
-   * @since 6.6
+   * @since GemFire 6.6
    */
   public Declarable getInitializer();
 
   /**
    * Returns the Properties used to initialize the cache initializer or
    * <code>null</code> if no initializer properties exist.
-   * @since 6.6
+   * @since GemFire 6.6
    */
   public Properties getInitializerProps();
 }

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/IncompatibleVersionException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/IncompatibleVersionException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/IncompatibleVersionException.java
index 6730b12..7f76bd9 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/IncompatibleVersionException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/IncompatibleVersionException.java
@@ -20,7 +20,7 @@ package com.gemstone.gemfire.cache;
  * An <code>IncompatibleVersionException</code> that the client version
  * was not compatible with the server version.
  *
- * @since 5.7
+ * @since GemFire 5.7
  */
 public class IncompatibleVersionException extends VersionException {
 private static final long serialVersionUID = 668812986092856749L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestPolicy.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestPolicy.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestPolicy.java
index dbe7337..7200bc6 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestPolicy.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestPolicy.java
@@ -28,7 +28,7 @@ import java.io.*;
  *
  * @see SubscriptionAttributes
  *
- * @since 5.0
+ * @since GemFire 5.0
  */
 public class InterestPolicy implements java.io.Serializable {
   private static final long serialVersionUID = 1567179436331385968L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationEvent.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationEvent.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationEvent.java
index df0c4ff..b2f9b0a 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationEvent.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationEvent.java
@@ -25,7 +25,7 @@ import com.gemstone.gemfire.internal.cache.tier.InterestType;
  * Interface <code>InterestRegistrationEvent</code> encapsulated interest
  * event information like region and keys of interest.
  *
- * @since 6.0
+ * @since GemFire 6.0
  */
 public interface InterestRegistrationEvent {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationListener.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationListener.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationListener.java
index 714be3f..370d47b 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationListener.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestRegistrationListener.java
@@ -60,7 +60,7 @@ package com.gemstone.gemfire.cache;
  * </pre>
  *
  *
- * @since 6.0
+ * @since GemFire 6.0
  * 
  * @see com.gemstone.gemfire.cache.server.CacheServer#registerInterestRegistrationListener registerInterestRegistrationListener
  * @see com.gemstone.gemfire.cache.server.CacheServer#unregisterInterestRegistrationListener unregisterInterestRegistrationListener

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestResultPolicy.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestResultPolicy.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestResultPolicy.java
index abfdc8b..7dee649 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestResultPolicy.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/InterestResultPolicy.java
@@ -31,7 +31,7 @@ import java.io.Serializable;
  * @see com.gemstone.gemfire.cache.Region#registerInterest(Object)
  * @see com.gemstone.gemfire.cache.Region#registerInterestRegex(String)
  *
- * @since 4.2.3
+ * @since GemFire 4.2.3
  */
 public class InterestResultPolicy implements Serializable {
   private static final long serialVersionUID = -4993765891973030160L;
@@ -73,7 +73,7 @@ public class InterestResultPolicy implements Serializable {
     return VALUES[ordinal];
   }
   /** Returns the ordinal value.
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public byte getOrdinal() {
     return this.ordinal;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/LoaderHelper.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/LoaderHelper.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/LoaderHelper.java
index 79dabe3..86aa329 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/LoaderHelper.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/LoaderHelper.java
@@ -24,7 +24,7 @@ package com.gemstone.gemfire.cache;
  *
  *
  * @see CacheLoader#load(LoaderHelper) load
- * @since 2.0
+ * @since GemFire 2.0
  */
 public interface LoaderHelper<K,V>
 {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/LowMemoryException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/LowMemoryException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/LowMemoryException.java
index e2f3748..aee073a 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/LowMemoryException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/LowMemoryException.java
@@ -31,7 +31,7 @@ import com.gemstone.gemfire.distributed.DistributedMember;
  * @see ResourceManager#setCriticalHeapPercentage(float)
  * @see Region#put(Object, Object)
  * 
- * @since 6.0
+ * @since GemFire 6.0
  */
 public class LowMemoryException extends ResourceException {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/MirrorType.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/MirrorType.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/MirrorType.java
index a499958..76b34a8 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/MirrorType.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/MirrorType.java
@@ -29,7 +29,7 @@ import java.io.*;
  *
  * @deprecated as of GemFire 5.0, use {@link DataPolicy} instead.
  *
- * @since 3.0
+ * @since GemFire 3.0
  */
 @Deprecated
 public class MirrorType implements java.io.Serializable {
@@ -97,7 +97,7 @@ public class MirrorType implements java.io.Serializable {
 
     /**
      * Returns the {@link DataPolicy} that corresponds to this mirror type.
-     * @since 5.0
+     * @since GemFire 5.0
      */
     public DataPolicy getDataPolicy() {
       return this.dataPolicy;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/NoQueueServersAvailableException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/NoQueueServersAvailableException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/NoQueueServersAvailableException.java
index c63605c..0217e91 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/NoQueueServersAvailableException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/NoQueueServersAvailableException.java
@@ -22,7 +22,7 @@ import com.gemstone.gemfire.cache.client.ServerConnectivityException;
  * Indicates that this client cannot contact any queue servers and
  * therefore cannot perform operations that require a queue, such as
  * registering interest.
- * @since 5.7
+ * @since GemFire 5.7
  */
 public class NoQueueServersAvailableException extends ServerConnectivityException {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/NoSubscriptionServersAvailableException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/NoSubscriptionServersAvailableException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/NoSubscriptionServersAvailableException.java
index 9ececa0..9c72e44 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/NoSubscriptionServersAvailableException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/NoSubscriptionServersAvailableException.java
@@ -22,7 +22,7 @@ import com.gemstone.gemfire.cache.client.ServerConnectivityException;
  * Indicates that this client cannot contact any servers and
  * therefore cannot perform operations that require subscriptions, such as
  * registering interest.
- * @since 5.7
+ * @since GemFire 5.7
  */
 public class NoSubscriptionServersAvailableException extends ServerConnectivityException {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/Operation.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/Operation.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/Operation.java
index a104751..2634416 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/Operation.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/Operation.java
@@ -29,7 +29,7 @@ import com.gemstone.gemfire.cache.execute.FunctionService;
  *
  * @see CacheEvent#getOperation
  *
- * @since 5.0
+ * @since GemFire 5.0
  */
 public final class Operation implements java.io.Serializable {
   private static final long serialVersionUID = -7521751729852504238L;
@@ -613,7 +613,7 @@ public final class Operation implements java.io.Serializable {
   /**
    * An atomic entry creation operation
    * @see java.util.concurrent.ConcurrentMap#putIfAbsent(Object, Object)
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public static final Operation PUT_IF_ABSENT
     = new Operation("PUT_IF_ABSENT",
@@ -626,7 +626,7 @@ public final class Operation implements java.io.Serializable {
   /**
    * An atomic update operation 
    * @see java.util.concurrent.ConcurrentMap#replace(Object, Object, Object)
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public static final Operation REPLACE
     = new Operation("REPLACE",
@@ -638,7 +638,7 @@ public final class Operation implements java.io.Serializable {
   /**
    * An atomic destroy destroy operation
    * @see java.util.concurrent.ConcurrentMap#remove(Object, Object)
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public static final Operation REMOVE
     = new Operation("REMOVE",
@@ -662,7 +662,7 @@ public final class Operation implements java.io.Serializable {
   /**
    * An entry distributed destroy caused by a removeAll.
    * @see Region#removeAll(java.util.Collection)
-   * @since 8.1
+   * @since GemFire 8.1
    */
   public static final Operation REMOVEALL_DESTROY
     = new Operation("REMOVEALL_DESTROY",
@@ -821,7 +821,7 @@ public final class Operation implements java.io.Serializable {
   /**
    * Returns true if this operation was initiated by a removeAll.
    * @see Region#removeAll(java.util.Collection)
-   * @since 8.1
+   * @since GemFire 8.1
    */
   public boolean isRemoveAll() {
     return (this.opDetails & OP_DETAILS_REMOVEALL) != 0;
@@ -932,7 +932,7 @@ public final class Operation implements java.io.Serializable {
    * guarantees the old value to be returned no matter what expense may
    * be incurred in doing so.
    * @return true if this operation has this guarantee
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public boolean guaranteesOldValue() {
     return (this.opDetails & OP_DETAILS_GUARANTEES_OLD_VALUE) != 0;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/OperationAbortedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/OperationAbortedException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/OperationAbortedException.java
index f74763a..f596f7e 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/OperationAbortedException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/OperationAbortedException.java
@@ -23,7 +23,7 @@ package com.gemstone.gemfire.cache;
  *
  *
  *
- * @since 3.0
+ * @since GemFire 3.0
  */
 public abstract class OperationAbortedException extends CacheRuntimeException {
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributes.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributes.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributes.java
index ef6315f..e2f5479 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributes.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributes.java
@@ -37,7 +37,7 @@ import com.gemstone.gemfire.cache.partition.PartitionListener;
  *
  * Also see {@link com.gemstone.gemfire.cache.DataPolicy#PARTITION}.
  * 
- * @since 5.0
+ * @since GemFire 5.0
  * 
  */
 public interface PartitionAttributes<K,V>
@@ -97,7 +97,7 @@ public interface PartitionAttributes<K,V>
   
   /**
    * Returns name of the colocated PartitionedRegion's name 
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public String getColocatedWith();
 
@@ -124,7 +124,7 @@ public interface PartitionAttributes<K,V>
   /**
    * Returns the PartitionResolver set for custom partitioning
    * @return <code>PartitionResolver</code> for the PartitionedRegion
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public PartitionResolver<K,V> getPartitionResolver();
 
@@ -135,7 +135,7 @@ public interface PartitionAttributes<K,V>
    * Default value of recoveryDelay is -1 which indicates that redundancy won't 
    * be recovered if a member crashes.
    * 
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public long getRecoveryDelay();
 
@@ -146,7 +146,7 @@ public interface PartitionAttributes<K,V>
    * Default value is 0 which is to recover redundancy immediately when a new
    * member is added. 
    * 
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public long getStartupRecoveryDelay();
   
@@ -155,7 +155,7 @@ public interface PartitionAttributes<K,V>
    * 
    * @see PartitionListener
    * @return PartitionListener configured on this partitioned region
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public PartitionListener[] getPartitionListeners();
 
@@ -163,7 +163,7 @@ public interface PartitionAttributes<K,V>
    * Returns <code>FixedPartitionAttributes</code>'s list of local partitions
    * defined on this Partitioned Region
    * 
-   * @since 6.6
+   * @since GemFire 6.6
    */
   public List<FixedPartitionAttributes> getFixedPartitionAttributes();
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributesFactory.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributesFactory.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributesFactory.java
index 1e35739..7489b89 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributesFactory.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionAttributesFactory.java
@@ -68,7 +68,7 @@ import com.gemstone.gemfire.internal.i18n.LocalizedStrings;
  * 
  * @see com.gemstone.gemfire.cache.PartitionAttributes
  * @see com.gemstone.gemfire.cache.AttributesFactory#setPartitionAttributes(PartitionAttributes)
- * @since 5.0
+ * @since GemFire 5.0
  */
 public class PartitionAttributesFactory<K,V>
 {
@@ -264,7 +264,7 @@ public class PartitionAttributesFactory<K,V>
    * Default value is set to -1 which indicates
    * that redundancy will not be recovered after a failure.
    * 
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public PartitionAttributesFactory<K,V> setRecoveryDelay(long recoveryDelay) {
     this.partitionAttributes.setRecoveryDelay(recoveryDelay);
@@ -278,7 +278,7 @@ public class PartitionAttributesFactory<K,V>
    * The default (set to 0) is to recover redundancy immediately when a new
    * member is added. 
    * 
-   * @since 6.0
+   * @since GemFire 6.0
    */
   public PartitionAttributesFactory<K,V> setStartupRecoveryDelay(long startupRecoveryDelay) {
     this.partitionAttributes.setStartupRecoveryDelay(startupRecoveryDelay);
@@ -290,7 +290,7 @@ public class PartitionAttributesFactory<K,V>
    * 
    * @param listener
    * @return PartitionAttributeFactory
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public PartitionAttributesFactory<K, V> addPartitionListener(
       PartitionListener listener) {
@@ -349,7 +349,7 @@ public class PartitionAttributesFactory<K,V>
    * FixedPartitionAttributes defined for this partitioned region is added to
    * PR attributes.
    * 
-   * @since 6.6
+   * @since GemFire 6.6
    */
   public PartitionAttributesFactory<K, V> addFixedPartitionAttributes(
       FixedPartitionAttributes fpa) {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionResolver.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionResolver.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionResolver.java
index ec4e821..562a42b 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionResolver.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionResolver.java
@@ -57,7 +57,7 @@ package com.gemstone.gemfire.cache;
  * </p>
  * 
  * 
- * @since 6.0
+ * @since GemFire 6.0
  */
 public interface PartitionResolver<K,V> extends CacheCallback {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionDistributionException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionDistributionException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionDistributionException.java
index dff7872..9a3ed77 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionDistributionException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionDistributionException.java
@@ -20,7 +20,7 @@ package com.gemstone.gemfire.cache;
  * Indicates a failure to perform a distributed operation on a Partitioned Region 
  * after multiple attempts.
  *
- * @since 5.1
+ * @since GemFire 5.1
  */
 public class PartitionedRegionDistributionException extends
    CacheRuntimeException

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionStorageException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionStorageException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionStorageException.java
index bfa1836..7334f89 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionStorageException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/PartitionedRegionStorageException.java
@@ -66,7 +66,7 @@ package com.gemstone.gemfire.cache;
  * 
  * 
  * @see com.gemstone.gemfire.cache.PartitionAttributesFactory
- * @since 5.0
+ * @since GemFire 5.0
  */
 public class PartitionedRegionStorageException extends CacheRuntimeException  {
 private static final long serialVersionUID = 5905463619475329732L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/Region.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/Region.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/Region.java
index 80e6ac9..f70e5de 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/Region.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/Region.java
@@ -151,7 +151,7 @@ import com.gemstone.gemfire.cache.snapshot.RegionSnapshotService;
  * @see AttributesFactory
  * @see AttributesMutator
  * @see Region.Entry
- * @since 2.0
+ * @since GemFire 2.0
  */
 
 public interface Region<K,V>  extends ConcurrentMap<K, V> {
@@ -1126,7 +1126,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * Returns the <code>cache</code> associated with this region.
    *  <p>Does not throw a <code>CacheClosedException</code> if the cache is closed.
    * @return the cache
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public RegionService getRegionService();
   
@@ -1256,7 +1256,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *         If problems are encounter while writing to disk
    * @throws UnsupportedOperationException If the region is a partitioned region
    * @see AttributesFactory#setPersistBackup
-   * @since 3.2
+   * @since GemFire 3.2
    * @deprecated use {@link DiskStore#flush} instead.
    */
   @Deprecated
@@ -1282,7 +1282,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see QueryService
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public boolean existsValue(String queryPredicate)
   throws FunctionDomainException, TypeMismatchException, NameResolutionException,
@@ -1312,7 +1312,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see QueryService
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public <E> SelectResults<E> query(String queryPredicate)
   throws FunctionDomainException, TypeMismatchException, NameResolutionException,
@@ -1340,7 +1340,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *         If more than one element evaluates to true.
    *
    * @see QueryService
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public Object selectValue(String queryPredicate)
   throws FunctionDomainException, TypeMismatchException, NameResolutionException,
@@ -1355,7 +1355,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * thrown. If compaction is true, the application will wait for the other oplogs to be compressed and more
    * space to be created.
    *
-   * @since 5.1
+   * @since GemFire 5.1
    * @throws DiskAccessException
    * @deprecated use {@link DiskStore#forceRoll} instead.
    */
@@ -1388,7 +1388,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @throws IllegalStateException if scope is not GLOBAL
    * @throws UnsupportedOperationException If the region is a partitioned region
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public void becomeLockGrantor();
 
@@ -1396,7 +1396,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * Removes all local entries from this region. This is not a distributed operation.
    * This operation is not allowed on replicated regions.
    *
-   * @since 5.0
+   * @since GemFire 5.0
    * @throws UnsupportedOperationException  If the region is a replicated region
    * @throws UnsupportedOperationException  If the region is a partitioned region
    * @see CacheListener#afterRegionClear
@@ -1409,7 +1409,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * Removes all entries from this region. Clear will be distributed to other caches if the scope
    * is not <code>Scope.LOCAL</code>.
    * <p>
-   * @since 5.0
+   * @since GemFire 5.0
    * @see java.util.Map#clear()
    * @see CacheListener#afterRegionClear
    * @see CacheWriter#beforeRegionClear
@@ -1424,7 +1424,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * This operation is not distributed and only the current region will be
    * checked for this value.
    *
-   * @since 5.0
+   * @since GemFire 5.0
    * @see java.util.Map#containsValue(Object)
    */
   public boolean containsValue(Object value);
@@ -1448,14 +1448,14 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *  that entry is called, it will be similar in effect as calling a put on that key.
    *
    * @return a Set of all the Region.Entry instances in this region locally
-   * @since 5.0
+   * @since GemFire 5.0
    * @see java.util.Map#entrySet()
    */
   public Set<Map.Entry<K,V>> entrySet(); //@todo darrel: should be Region.Entry
 
   /**
    * Returns true if this region contains no entries.
-   *@since 5.0
+   *@since GemFire 5.0
    * @see java.util.Map#isEmpty()
    * @return true if this region contains no entries.
    */
@@ -1468,7 +1468,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * This operation will be distributed to other caches if the scope
    * is not <code>Scope.LOCAL</code>.
    * @param map the key/value pairs to put in this region.
-   * @since 5.0
+   * @since GemFire 5.0
    * @see java.util.Map#putAll(Map map)
    * @throws LowMemoryException if a low memory condition is detected.
    */
@@ -1483,7 +1483,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @param map the key/value pairs to put in this region.
    * @param aCallbackArgument a user-defined parameter to pass to callback events
    *        triggered by this method. May be null. Must be serializable if this operation is distributed.
-   * @since 8.1
+   * @since GemFire 8.1
    * @see java.util.Map#putAll(Map map)
    * @throws LowMemoryException if a low memory condition is detected.
    */
@@ -1497,7 +1497,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * This operation will be distributed to other caches if the scope
    * is not <code>Scope.LOCAL</code>.
    * @param keys the keys to remove from this region.
-   * @since 8.1
+   * @since GemFire 8.1
    * @see Region#destroy(Object)
    */
   public void removeAll(Collection<? extends K> keys);
@@ -1511,7 +1511,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @param keys the keys to remove from this region.
    * @param aCallbackArgument a user-defined parameter to pass to callback events
    *        triggered by this method. May be null. Must be serializable if this operation is distributed.
-   * @since 8.1
+   * @since GemFire 8.1
    * @see Region#destroy(Object, Object)
    */
   public void removeAll(Collection<? extends K> keys, Object aCallbackArgument);
@@ -1527,7 +1527,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @param keys A Collection of keys
    * @return A Map of values for the input keys
    *
-   * @since 5.7
+   * @since GemFire 5.7
    */
   public Map<K, V> getAll(Collection<?> keys);
   /**
@@ -1546,7 +1546,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * May be null. Must be serializable if this operation is distributed.
    * @return A Map of values for the input keys
    *
-   * @since 8.1
+   * @since GemFire 8.1
    */
   public <T extends K> Map<T, V> getAll(Collection<T> keys, Object aCallbackArgument);
 
@@ -1582,7 +1582,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see CacheWriter#beforeDestroy
    * @see java.util.Map#remove(Object)
    *
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public V remove(Object key);
 
@@ -1595,7 +1595,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * For all other types of regions, it returns the number of entries present
    * locally, and it is not a distributed operation.
    * 
-   * @since 5.0
+   * @since GemFire 5.0
    * @see java.util.Map#size()
    * @return int the number of entries present in this region
    */
@@ -1649,7 +1649,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * 
    * @see InterestResultPolicy
    *
-   * @since 4.2
+   * @since GemFire 4.2
    *
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    * @throws SubscriptionNotEnabledException if the region's pool does not have subscriptions enabled.
@@ -1696,7 +1696,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see InterestResultPolicy
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    */
   public void registerInterest(K key, InterestResultPolicy policy);
 
@@ -1727,7 +1727,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see InterestResultPolicy
    * @see java.util.regex.Pattern
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    */
   public void registerInterestRegex(String regex);
 
@@ -1763,7 +1763,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see InterestResultPolicy
    * @see java.util.regex.Pattern
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    */
   public void registerInterestRegex(String regex, InterestResultPolicy policy);
 
@@ -1778,7 +1778,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * be unregistered.
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    *
-   * @since 4.2
+   * @since GemFire 4.2
    */
   public void unregisterInterest(K key);
 
@@ -1792,7 +1792,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @param regex The regular expression on which to unregister interest.
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    */
   public void unregisterInterestRegex(String regex);
   /**
@@ -1803,7 +1803,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @return The list of keys on which this client is interested
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    *
-   * @since 4.2
+   * @since GemFire 4.2
    */
   public List<K> getInterestList();
 
@@ -1839,7 +1839,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see InterestResultPolicy
    *
-   * @since 5.5
+   * @since GemFire 5.5
    *
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    * @throws SubscriptionNotEnabledException if the region's pool does not have subscriptions enabled.
@@ -1881,7 +1881,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see InterestResultPolicy
    *
-   * @since 6.0.3
+   * @since GemFire 6.0.3
    *
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    * @throws SubscriptionNotEnabledException if the region's pool does not have subscriptions enabled.
@@ -1932,7 +1932,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see InterestResultPolicy
    *
-   * @since 6.0.3
+   * @since GemFire 6.0.3
    */
   public void registerInterest(K key, InterestResultPolicy policy,
       boolean isDurable, boolean receiveValues);
@@ -1978,7 +1978,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    *
    * @see InterestResultPolicy
    *
-   * @since 5.5
+   * @since GemFire 5.5
    */
   public void registerInterest(K key, InterestResultPolicy policy, boolean isDurable);
   
@@ -2011,7 +2011,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see InterestResultPolicy
    * @see java.util.regex.Pattern
    *
-   * @since 5.5
+   * @since GemFire 5.5
    */
   public void registerInterestRegex(String regex, boolean isDurable);
 
@@ -2046,7 +2046,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see InterestResultPolicy
    * @see java.util.regex.Pattern
    *
-   * @since 6.0.3
+   * @since GemFire 6.0.3
    */
   public void registerInterestRegex(String regex, boolean isDurable,
       boolean receiveValues);
@@ -2085,7 +2085,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see InterestResultPolicy
    * @see java.util.regex.Pattern
    *
-   * @since 5.5
+   * @since GemFire 5.5
    */
   public void registerInterestRegex(String regex, InterestResultPolicy policy, boolean isDurable);
 
@@ -2125,7 +2125,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @see InterestResultPolicy
    * @see java.util.regex.Pattern
    *
-   * @since 6.0.3
+   * @since GemFire 6.0.3
    */
   public void registerInterestRegex(String regex, InterestResultPolicy policy,
       boolean isDurable, boolean receiveValues);
@@ -2138,7 +2138,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
    * @return The list of regular expresssions on which this client is interested
    * @throws UnsupportedOperationException if the region is not configured with a pool name.
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    */
   public List<String> getInterestListRegex();
 
@@ -2147,7 +2147,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
   * @return a Set of all the keys in the region on the server
   * @throws UnsupportedOperationException if the region is not configured with a pool name.
   *
-  * @since 5.0.2
+  * @since GemFire 5.0.2
   */
  public Set<K> keySetOnServer();
 
@@ -2159,7 +2159,7 @@ public interface Region<K,V>  extends ConcurrentMap<K, V> {
   * the server
   * @throws UnsupportedOperationException if the region is not configured with a pool name.
   *
-  * @since 5.0.2
+  * @since GemFire 5.0.2
   */
 public boolean containsKeyOnServer(Object key);
 
@@ -2198,7 +2198,7 @@ public boolean containsKeyOnServer(Object key);
    * @throws CacheWriterException if a CacheWriter aborts the operation
    * @throws PartitionedRegionStorageException if the operation could not be completed on a partitioned region.
    * @throws LowMemoryException if a low memory condition is detected.
-   * @since 6.5
+   * @since GemFire 6.5
   *
   */
  V putIfAbsent(K key, V value);
@@ -2232,7 +2232,7 @@ public boolean containsKeyOnServer(Object key);
    * @throws CacheWriterException if a CacheWriter aborts the operation
    * @throws PartitionedRegionStorageException if the operation could not be completed on a partitioned region.
    * @throws LowMemoryException if a low memory condition is detected.
-   * @since 6.5
+   * @since GemFire 6.5
   */
  boolean remove(Object key, Object value);
 
@@ -2268,7 +2268,7 @@ public boolean containsKeyOnServer(Object key);
    * @throws CacheWriterException if a CacheWriter aborts the operation
    * @throws PartitionedRegionStorageException if the operation could not be completed on a partitioned region.
    * @throws LowMemoryException if a low memory condition is detected.
-   * @since 6.5
+   * @since GemFire 6.5
   */
  boolean replace(K key, V oldValue, V newValue);
 
@@ -2304,7 +2304,7 @@ public boolean containsKeyOnServer(Object key);
    * @throws CacheWriterException if a CacheWriter aborts the operation
    * @throws PartitionedRegionStorageException if the operation could not be completed on a partitioned region.
    * @throws LowMemoryException if a low memory condition is detected.
-   * @since 6.5
+   * @since GemFire 6.5
   */
  V replace(K key, V value);
 
@@ -2395,7 +2395,7 @@ public boolean containsKeyOnServer(Object key);
      *         If the value is not currently stored in memory but is on disk
      *         and if the region does not have cqs
      *         then <code>null</code> is returned.
-     * @since 5.0
+     * @since GemFire 5.0
      * @see Region#put(Object, Object)
      */
     public V setValue(V value);

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionAttributes.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionAttributes.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionAttributes.java
index 94cc11a..b0d09fa 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionAttributes.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionAttributes.java
@@ -40,7 +40,7 @@ import com.gemstone.gemfire.compression.Compressor;
  * @see AttributesMutator
  * @see Region#getAttributes
  * @see com.gemstone.gemfire.cache.EvictionAttributes
- * @since 2.0
+ * @since GemFire 2.0
  */
 public interface RegionAttributes<K,V> {
 
@@ -112,7 +112,7 @@ public interface RegionAttributes<K,V> {
   /**
    * Gets the flag telling a region to ignore JTA transactions.
    * Default value is set to false.
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public boolean getIgnoreJTA();
 
@@ -129,7 +129,7 @@ public interface RegionAttributes<K,V> {
    * Default value of DataPolicy is set to 'Normal'. Please refer the gemfire documentation for more details on this.
    *
    * @return the region's <code>DataPolicy</code>
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public DataPolicy getDataPolicy();
 
@@ -158,7 +158,7 @@ public interface RegionAttributes<K,V> {
   /** Returns an array of all the cache listeners on this attributes.
    * Modifications to the returned array will not effect the attributes.
    * @return the region's <code>CacheListener</code>s; an empty array if no listeners
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public CacheListener<K,V>[] getCacheListeners();
 
@@ -200,7 +200,7 @@ public interface RegionAttributes<K,V> {
    * Multicast must also be enabled in the DistributedSystem.
    * Default value is set to false.
    *
-   * @since 5.0
+   * @since GemFire 5.0
    * @return true if this region is configured to allow use of multicast
    * for distributed messaging
    * @see AttributesFactory#setMulticastEnabled
@@ -218,7 +218,7 @@ public interface RegionAttributes<K,V> {
    * Returns whether or not a persistent backup should be made of the
    * region (as opposed to just writing the overflow data to disk).
    *
-   * @since 3.2
+   * @since GemFire 3.2
    * @deprecated as of GemFire 5.0, use {@link DataPolicy#PERSISTENT_REPLICATE} instead
    */
   @Deprecated
@@ -228,7 +228,7 @@ public interface RegionAttributes<K,V> {
    * Returns the <code>DiskWriteAttributes</code> that configure how
    * the region is written to disk.
    *
-   * @since 3.2
+   * @since GemFire 3.2
    * @deprecated as of 6.5 use {@link #getDiskStoreName} instead.
    */
   @Deprecated
@@ -239,7 +239,7 @@ public interface RegionAttributes<K,V> {
    * multiple directories are used, GemFire will attempt to distribute the
    * data evenly amongst them.
    *
-   * @since 3.2
+   * @since GemFire 3.2
    * @deprecated as of 6.5 use {@link DiskStore#getDiskDirs} instead.
    */
   @Deprecated
@@ -251,7 +251,7 @@ public interface RegionAttributes<K,V> {
    * region is modified or asynchronously in a background thread. 
    * Default value is true.
    *
-   * @since 4.0
+   * @since GemFire 4.0
    */
   public boolean getIndexMaintenanceSynchronous();
 
@@ -259,7 +259,7 @@ public interface RegionAttributes<K,V> {
    * Returns the <code>PartitionAttributes</code> that configure how
    * the region is partitioned.
    *
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public PartitionAttributes getPartitionAttributes();
 
@@ -275,7 +275,7 @@ public interface RegionAttributes<K,V> {
    * Returns the <code>SubscriptionAttributes</code> that configure
    * how this region behaves as a subscriber to remote caches.
    *
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public SubscriptionAttributes getSubscriptionAttributes();
 
@@ -293,7 +293,7 @@ public interface RegionAttributes<K,V> {
    * @return True if acks are sent after updates are processed;
    *         false if acks are sent before updates are processed.
    *
-   * @since 4.1
+   * @since GemFire 4.1
    * @deprecated Setting early ack no longer has any effect.
    */
   @Deprecated
@@ -305,7 +305,7 @@ public interface RegionAttributes<K,V> {
    * @return True if a publisher;
    *         false if not (default).
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    * @deprecated as of 6.5
    */
   public boolean getPublisher();
@@ -322,7 +322,7 @@ public interface RegionAttributes<K,V> {
    * @return True if conflation is enabled;
    *         false conflation is not enabled (default).
    *
-   * @since 4.2
+   * @since GemFire 4.2
    */
   @Deprecated
   public boolean getEnableConflation();
@@ -337,7 +337,7 @@ public interface RegionAttributes<K,V> {
    * @return True if conflation is enabled;
    *         false conflation is not enabled (default).
    *
-   * @since 5.0
+   * @since GemFire 5.0
    * @deprecated as of GemFire 5.0, use {@link #getEnableSubscriptionConflation} instead
    */
   @Deprecated
@@ -355,7 +355,7 @@ public interface RegionAttributes<K,V> {
    * @return True if conflation is enabled;
    *         false conflation is not enabled (default).
    *
-   * @since 5.7
+   * @since GemFire 5.7
    */
   public boolean getEnableSubscriptionConflation();
   /**
@@ -367,7 +367,7 @@ public interface RegionAttributes<K,V> {
    * @return True if async conflation is enabled;
    *         false async conflation is not enabled (default).
    *
-   * @since 4.2.3
+   * @since GemFire 4.2.3
    */
   public boolean getEnableAsyncConflation();
 
@@ -386,7 +386,7 @@ public interface RegionAttributes<K,V> {
    * @return the name of the client-server {@link Pool}
    * this region will use for server communication; <code>null</code> is returned if
    * the region communicates with peers.
-   * @since 5.7
+   * @since GemFire 5.7
    */
   public String getPoolName();
   
@@ -397,7 +397,7 @@ public interface RegionAttributes<K,V> {
    * @return True if cloning is enabled;
    *         false cloning is not enabled (default).
    *
-   * @since 6.1
+   * @since GemFire 6.1
    */
   public boolean getCloningEnabled();
 
@@ -408,7 +408,7 @@ public interface RegionAttributes<K,V> {
    * @return the name of the {@link DiskStore} of this region; 
    * <code>null</code> is returned if this region belongs to default 
    * {@link DiskStore}.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   public String getDiskStoreName();
   
@@ -417,7 +417,7 @@ public interface RegionAttributes<K,V> {
    * Default is set to true.
    * 
    * @return Returns true if writes to disk are synchronous and false otherwise
-   * @since 6.5 
+   * @since GemFire 6.5
    */
   public boolean isDiskSynchronous();
   
@@ -441,14 +441,14 @@ public interface RegionAttributes<K,V> {
    * 
    * Default is set to true.
    * 
-   * @since 7.0
+   * @since GemFire 7.0
    * @return true if concurrent update checks are turned on
    */
   public boolean getConcurrencyChecksEnabled();
   
   /**
    * Returns the compressor used by this region's entry values.
-   * @since 8.0
+   * @since GemFire 8.0
    * @return null if the region does not have compression enabled.
    */
   public Compressor getCompressor();
@@ -457,7 +457,7 @@ public interface RegionAttributes<K,V> {
    * Returns whether or not this region uses off-heap memory.
    * @return True if a usage of off-heap memory is enabled;
    *         false if usage of off-heap memory is disabled (default).
-   * @since 9.0
+   * @since Geode 1.0
    */
   public boolean getOffHeap();
 }

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionDestroyedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionDestroyedException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionDestroyedException.java
index 25c6d23..e518444 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionDestroyedException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionDestroyedException.java
@@ -21,7 +21,7 @@ package com.gemstone.gemfire.cache;
  * on the region object are not allowed.
  *
  *
- * @since 2.0
+ * @since GemFire 2.0
  */
 public class RegionDestroyedException extends CacheRuntimeException {
 private static final long serialVersionUID = 319804842308010754L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionEvent.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionEvent.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionEvent.java
index d15ee89..08365d5 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionEvent.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionEvent.java
@@ -26,7 +26,7 @@ package com.gemstone.gemfire.cache;
  * @see CacheListener
  * @see CacheWriter
  * @see EntryEvent
- * @since 2.0
+ * @since GemFire 2.0
  */
 public interface RegionEvent<K,V> extends CacheEvent<K,V> {
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionExistsException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionExistsException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionExistsException.java
index a4ced6f..91225ec 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionExistsException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionExistsException.java
@@ -25,7 +25,7 @@ package com.gemstone.gemfire.cache;
  * 
  * @see Region#createSubregion
  * @see Cache#createRegion
- * @since 2.0
+ * @since GemFire 2.0
  */
 public class RegionExistsException extends CacheException {
 private static final long serialVersionUID = -5643670216230359426L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionFactory.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionFactory.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionFactory.java
index 5110d40..3fd383a 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionFactory.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionFactory.java
@@ -57,7 +57,7 @@ The final step is to produce a {@link Region} by calling {@link #create(String)}
     .create("partition");
 </PRE>
  *
- * @since 5.0
+ * @since GemFire 5.0
  */
 
 public class RegionFactory<K,V>
@@ -67,7 +67,7 @@ public class RegionFactory<K,V>
 
   /**
    * For internal use only.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   protected RegionFactory(GemFireCacheImpl cache) {
     this.cache = cache;
@@ -76,7 +76,7 @@ public class RegionFactory<K,V>
 
   /**
    * For internal use only.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   protected RegionFactory(GemFireCacheImpl cache, RegionShortcut pra) {
     this.cache = cache;
@@ -90,7 +90,7 @@ public class RegionFactory<K,V>
 
   /**
    * For internal use only.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   protected RegionFactory(GemFireCacheImpl cache, RegionAttributes ra) {
     this.cache = cache;
@@ -99,7 +99,7 @@ public class RegionFactory<K,V>
 
   /**
    * For internal use only.
-   * @since 6.5
+   * @since GemFire 6.5
    */
   protected RegionFactory(GemFireCacheImpl cache, String regionAttributesId) {
     this.cache = cache;
@@ -449,7 +449,7 @@ public class RegionFactory<K,V>
   /**
    * Sets whether distributed operations on this region should attempt to use multicast.
    *
-   * @since 5.0
+   * @since GemFire 5.0
    * @param value true to enable multicast
    * @return a reference to this RegionFactory object
    * @see AttributesFactory#setMulticastEnabled(boolean)
@@ -476,7 +476,7 @@ public class RegionFactory<K,V>
    * @return a reference to this RegionFactory object
    * @throws IllegalStateException if a cache loader or cache writer has already
    * been set.
-   * @since 5.7
+   * @since GemFire 5.7
    */
   public RegionFactory<K,V> setPoolName(String poolName) {
     this.attrsFactory.setPoolName(poolName);
@@ -485,7 +485,7 @@ public class RegionFactory<K,V>
 
   /**
    * Sets whether or not this region should be considered a publisher.
-   * @since 5.0
+   * @since GemFire 5.0
    * @deprecated as of 6.5
    */
   @Deprecated
@@ -613,7 +613,7 @@ public class RegionFactory<K,V>
    * ensures that region contents are consistent across the distributed
    * system.  This setting must be the same in each member having the region.
    *
-   * @since 7.0
+   * @since GemFire 7.0
    * @param enabled whether concurrency checks should be enabled for the region
    * @see AttributesFactory#setConcurrencyChecksEnabled
    */
@@ -644,7 +644,7 @@ public class RegionFactory<K,V>
    * This causes the region to belong to the DiskStore.
    * @param name the name of the diskstore
    * @return a reference to this RegionFactory object
-   * @since 6.5 
+   * @since GemFire 6.5
    * 
    * @see AttributesFactory#setDiskStoreName
    */
@@ -659,7 +659,7 @@ public class RegionFactory<K,V>
    * @param isSynchronous
    *          boolean if true indicates synchronous writes
    * @return a reference to this RegionFactory object
-   * @since 6.5 
+   * @since GemFire 6.5
    */
   public RegionFactory<K,V> setDiskSynchronous(boolean isSynchronous)
   {
@@ -691,7 +691,7 @@ public class RegionFactory<K,V>
    * @throws IllegalArgumentException if length of the size array
    * does not match to the length of the dir array
    *   
-   * @since 5.1
+   * @since GemFire 5.1
    * @see AttributesFactory#setDiskDirsAndSizes
    * @deprecated as of 6.5 use {@link DiskStoreFactory#setDiskDirsAndSizes} instead
    */
@@ -758,7 +758,7 @@ public class RegionFactory<K,V>
   /**
    * Sets whether operations on this region should be controlled by
    * JTA transactions or not
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public RegionFactory<K,V> setIgnoreJTA(boolean flag) {
     this.attrsFactory.setIgnoreJTA(flag);
@@ -840,7 +840,7 @@ public class RegionFactory<K,V>
    *           if the parent region has been closed or destroyed
    * @throws CacheClosedException
    *           if the cache is closed
-   * @since 7.0
+   * @since GemFire 7.0
    */
   @SuppressWarnings("unchecked")
   public Region<K,V> createSubregion(Region<?,?> parent, String name) throws RegionExistsException {
@@ -854,7 +854,7 @@ public class RegionFactory<K,V>
    * Note: off-heap regions always behave as if cloning is enabled.
    * @param cloningEnable
    * @return a reference to this RegionFactory object
-   * @since 6.1
+   * @since GemFire 6.1
    * @see AttributesFactory#setCloningEnabled
    */
   public RegionFactory<K,V> setCloningEnabled(boolean cloningEnable) {
@@ -866,7 +866,7 @@ public class RegionFactory<K,V>
    * Adds a gatewaySenderId to the RegionAttributes
    * @param gatewaySenderId
    * @return a reference to this RegionFactory object
-   * @since 7.0
+   * @since GemFire 7.0
    * @see AttributesFactory#addGatewaySenderId(String) 
    */
   public RegionFactory<K,V> addGatewaySenderId(String gatewaySenderId)
@@ -880,7 +880,7 @@ public class RegionFactory<K,V>
    * 
    * @param asyncEventQueueId id of AsyncEventQueue 
    * @return a reference to this RegionFactory instance
-   * @since 7.0
+   * @since GemFire 7.0
    */
   public RegionFactory<K,V> addAsyncEventQueueId(String asyncEventQueueId) {
     this.attrsFactory.addAsyncEventQueueId(asyncEventQueueId);
@@ -892,7 +892,7 @@ public class RegionFactory<K,V>
    * region entry values.
    * @param compressor a compressor
    * @return a reference to this RegionFactory instance
-   * @since 8.0
+   * @since GemFire 8.0
    */
   public RegionFactory<K,V> setCompressor(Compressor compressor) {
     this.attrsFactory.setCompressor(compressor);
@@ -902,7 +902,7 @@ public class RegionFactory<K,V>
   /**
    * Enables this region's usage of off-heap memory if true.
    * @param offHeap boolean flag to enable off-heap memory
-   * @since 9.0
+   * @since Geode 1.0
    */
   public RegionFactory<K,V> setOffHeap(boolean offHeap) {
     this.attrsFactory.setOffHeap(offHeap);

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionMembershipListener.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionMembershipListener.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionMembershipListener.java
index 60f01cf..c4bd33e 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionMembershipListener.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionMembershipListener.java
@@ -33,7 +33,7 @@ import com.gemstone.gemfire.distributed.DistributedMember;
  * @see AttributesMutator#addCacheListener
  * @see AttributesMutator#removeCacheListener
  * @see AttributesMutator#initCacheListeners
- * @since 5.0
+ * @since GemFire 5.0
  */
 public interface RegionMembershipListener<K,V> extends CacheListener<K,V> {
   /**

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionReinitializedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionReinitializedException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionReinitializedException.java
index 029576c..48079ea 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionReinitializedException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionReinitializedException.java
@@ -23,7 +23,7 @@ package com.gemstone.gemfire.cache;
  * region.
  *
  *
- * @since 4.0
+ * @since GemFire 4.0
  */
 public class RegionReinitializedException extends RegionDestroyedException {
 private static final long serialVersionUID = 8532904304288670752L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionService.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionService.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionService.java
index 2afdd0e..186c41d 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionService.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionService.java
@@ -45,7 +45,7 @@ import com.gemstone.gemfire.pdx.PdxInstanceFactory;
  * </ul>
  * <p>
  *
- * @since 6.5
+ * @since GemFire 6.5
  */
 public interface RegionService extends AutoCloseable {
   /**
@@ -96,7 +96,7 @@ public interface RegionService extends AutoCloseable {
    * @param className the fully qualified class name that the PdxInstance will become
    *   when it is fully deserialized.
    * @return the factory
-   * @since 6.6.2
+   * @since GemFire 6.6.2
    */
   public PdxInstanceFactory createPdxInstanceFactory(String className);
   /**
@@ -106,7 +106,7 @@ public interface RegionService extends AutoCloseable {
    * @param enumOrdinal the ordinal value of the enum constant
    * @return a PdxInstance that represents the enum value
    * @throws IllegalArgumentException if className or enumName are <code>null</code>.
-   * @since 6.6.2
+   * @since GemFire 6.6.2
    */
   public PdxInstance createPdxEnum(String className, String enumName, int enumOrdinal);
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionShortcut.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionShortcut.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionShortcut.java
index 6aae635..e9c5bb4 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionShortcut.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RegionShortcut.java
@@ -24,7 +24,7 @@ package com.gemstone.gemfire.cache;
  * <p>Another way to use predefined region attributes is in cache.xml by setting
  * the refid attribute on a region element or region-attributes element to the
  * string of each value.
- * @since 6.5
+ * @since GemFire 6.5
  */
 public enum RegionShortcut {
   /**

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/RemoteTransactionException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/RemoteTransactionException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/RemoteTransactionException.java
index bdfea22..060ffa5 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/RemoteTransactionException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/RemoteTransactionException.java
@@ -24,7 +24,7 @@ package com.gemstone.gemfire.cache;
  * is hosted on a member that is not
  * the initiator of the transaction.
  *
- * @since 6.5
+ * @since GemFire 6.5
  * @deprecated as of 6.6 exceptions from a remote node are no longer wrapped in this exception.  Instead of this, {@link TransactionDataNodeHasDepartedException} is thrown.
  */
 public class RemoteTransactionException extends TransactionException {

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/ResourceException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/ResourceException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/ResourceException.java
index 53983f0..8670f0d 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/ResourceException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/ResourceException.java
@@ -21,7 +21,7 @@ package com.gemstone.gemfire.cache;
  * A Generic exception to indicate that a resource exception has occurred.
  * This class is abstract so that only subclasses can be instantiated.
  * 
- * @since 6.0
+ * @since GemFire 6.0
  */
 public abstract class ResourceException extends CacheRuntimeException {
   /**

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/Scope.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/Scope.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/Scope.java
index 1affd0b..0ea7fa5 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/Scope.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/Scope.java
@@ -29,7 +29,7 @@ import java.io.*;
  *
  * @see RegionAttributes#getScope
  * @see AttributesFactory#setScope
- * @since 3.0
+ * @since GemFire 3.0
  */
 public class Scope implements Serializable {
     private static final long serialVersionUID = 5534399159504301602L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/SerializedCacheValue.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/SerializedCacheValue.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/SerializedCacheValue.java
index e12076e..3976693 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/SerializedCacheValue.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/SerializedCacheValue.java
@@ -32,7 +32,7 @@ package com.gemstone.gemfire.cache;
  * Attempts to access off-heap data from this event after it has expired will result in an
  * IllegalStateException.
  *
- * @since 5.5
+ * @since GemFire 5.5
  */
 public interface SerializedCacheValue<V> {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/StatisticsDisabledException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/StatisticsDisabledException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/StatisticsDisabledException.java
index f135b87..d2d4d35 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/StatisticsDisabledException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/StatisticsDisabledException.java
@@ -27,7 +27,7 @@ package com.gemstone.gemfire.cache;
  * @see RegionAttributes#getStatisticsEnabled
  * @see Region#getStatistics
  * @see Region.Entry#getStatistics
- * @since 3.0
+ * @since GemFire 3.0
  */
 public class StatisticsDisabledException extends CacheRuntimeException {
 private static final long serialVersionUID = -2987721454129719551L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/SubscriptionAttributes.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/SubscriptionAttributes.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/SubscriptionAttributes.java
index 2fb218b..2e10da8 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/SubscriptionAttributes.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/SubscriptionAttributes.java
@@ -26,7 +26,7 @@ import java.io.*;
  * <p>The {@link InterestPolicy} defines what remote operation's data/event
  * are of interest to this cache's region.</p>
  * 
- * @since 5.0
+ * @since GemFire 5.0
  */
 public class SubscriptionAttributes implements DataSerializable, Externalizable {
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/SynchronizationCommitConflictException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/SynchronizationCommitConflictException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/SynchronizationCommitConflictException.java
index 1870ddc..aea1f8f 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/SynchronizationCommitConflictException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/SynchronizationCommitConflictException.java
@@ -21,7 +21,7 @@ package com.gemstone.gemfire.cache;
  *
  *
  * @see javax.transaction.UserTransaction#commit
- * @since 4.0
+ * @since GemFire 4.0
  */
 public class SynchronizationCommitConflictException extends CacheRuntimeException {
 private static final long serialVersionUID = 2619806460255259492L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TimeoutException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TimeoutException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TimeoutException.java
index 0cdb912..f04f3d8 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TimeoutException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TimeoutException.java
@@ -32,7 +32,7 @@ package com.gemstone.gemfire.cache;
  * @see com.gemstone.gemfire.cache.Region#invalidate(Object)
  * @see com.gemstone.gemfire.cache.Region#destroy(Object)
  * @see com.gemstone.gemfire.distributed.DistributedLockService
- * @since 3.0
+ * @since GemFire 3.0
  */
 public class TimeoutException extends OperationAbortedException {
 private static final long serialVersionUID = -6260761691185737442L;

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNodeHasDepartedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNodeHasDepartedException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNodeHasDepartedException.java
index f977694..40465f6 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNodeHasDepartedException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNodeHasDepartedException.java
@@ -25,7 +25,7 @@ package com.gemstone.gemfire.cache;
  * is hosted on a member that is not
  * the initiator of the transaction.
  *
- * @since 6.5
+ * @since GemFire 6.5
  */
 public class TransactionDataNodeHasDepartedException extends TransactionException {
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNotColocatedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNotColocatedException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNotColocatedException.java
index 63535d7..09428af 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNotColocatedException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataNotColocatedException.java
@@ -29,7 +29,7 @@ package com.gemstone.gemfire.cache;
  * is usually colocated. This is because data can be moved from one node to another
  * during the time between the original transactional operations and the commit. 
  *
- * @since 6.5
+ * @since GemFire 6.5
  */
 public class TransactionDataNotColocatedException extends TransactionException {
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataRebalancedException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataRebalancedException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataRebalancedException.java
index 65b6a18..1d61b74 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataRebalancedException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionDataRebalancedException.java
@@ -25,7 +25,7 @@ import com.gemstone.gemfire.cache.control.RebalanceOperation;
  * <p>This exception only occurs when a transaction
  * involves partitioned regions.
  * 
- * @since 6.6
+ * @since GemFire 6.6
  */
 public class TransactionDataRebalancedException extends TransactionException {
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionEvent.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionEvent.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionEvent.java
index e9cc4ee..5bf0c56 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionEvent.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionEvent.java
@@ -48,7 +48,7 @@ import java.util.*;
  *
  * @see TransactionListener
  * @see EntryEvent
- * @since 4.0
+ * @since GemFire 4.0
  */
 public interface TransactionEvent {
 
@@ -100,7 +100,7 @@ public interface TransactionEvent {
    * performed during the transaction.
    * @return an unmodifiable <code>List</code> of all the {@link CacheEvent} instances;
    * one for each operation performed by this transaction.
-   * @since 5.0
+   * @since GemFire 5.0
    */
   public List<CacheEvent<?,?>> getEvents();
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionException.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionException.java
index 1212804..ef0999d 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionException.java
@@ -19,7 +19,7 @@ package com.gemstone.gemfire.cache;
 /**
  * This is the superclass for all Exceptions that may be thrown
  * by a GemFire transaction.
- * @since 6.5
+ * @since GemFire 6.5
  */
 public class TransactionException extends CacheException {
 

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/8eac0fa8/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionId.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionId.java b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionId.java
index f05ab7e..230a649 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionId.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/cache/TransactionId.java
@@ -23,7 +23,7 @@ import java.io.Externalizable;
  * represents a unique GemFire transaction.
  *
  * 
- * @since 4.0
+ * @since GemFire 4.0
  * 
  * @see Cache#getCacheTransactionManager
  * @see CacheTransactionManager#getTransactionId