You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ud...@apache.org on 2016/06/15 16:17:41 UTC

[08/33] incubator-geode git commit: Minor javadoc fixes

Minor javadoc fixes

GatewayCancelledException said it was thrown when an Oplog is terminated.
OplogCancelledException said it was thrown when a Gateway is terminated.
DistributedMember had a non-deprecated getRoles() method.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/5e0050de
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/5e0050de
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/5e0050de

Branch: refs/heads/feature/GEODE-420
Commit: 5e0050de149fb1540c5dcf45257e5283cf3ff9f9
Parents: e831aa0
Author: Bruce Schuchardt <bs...@pivotal.io>
Authored: Fri Jun 10 15:55:17 2016 -0700
Committer: Bruce Schuchardt <bs...@pivotal.io>
Committed: Fri Jun 10 15:55:17 2016 -0700

----------------------------------------------------------------------
 .../java/com/gemstone/gemfire/distributed/DistributedMember.java   | 1 +
 .../gemstone/gemfire/distributed/GatewayCancelledException.java    | 2 +-
 .../com/gemstone/gemfire/distributed/OplogCancelledException.java  | 2 +-
 .../com/gemstone/gemfire/distributed/PoolCancelledException.java   | 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/5e0050de/geode-core/src/main/java/com/gemstone/gemfire/distributed/DistributedMember.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/DistributedMember.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/DistributedMember.java
index 3779cdc..58c5094 100755
--- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/DistributedMember.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/DistributedMember.java
@@ -44,6 +44,7 @@ public interface DistributedMember extends Comparable<DistributedMember> {
   /**
    * Returns the Roles that this member performs in the system.
    * Note that the result will contain both groups and roles.
+   * @deprecated Roles is scheduled to be removed
    */
   public Set<Role> getRoles();
   

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/5e0050de/geode-core/src/main/java/com/gemstone/gemfire/distributed/GatewayCancelledException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/GatewayCancelledException.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/GatewayCancelledException.java
index bfe25a1..11d975f 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/GatewayCancelledException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/GatewayCancelledException.java
@@ -19,7 +19,7 @@ package com.gemstone.gemfire.distributed;
 import com.gemstone.gemfire.CancelException;
 
 /**
- * Thrown when a GemFire oplog has been terminated.
+ * Thrown when a GemFire WAN gateway has been terminated.
  * 
  * @since GemFire 6.0
  */

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/5e0050de/geode-core/src/main/java/com/gemstone/gemfire/distributed/OplogCancelledException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/OplogCancelledException.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/OplogCancelledException.java
index aa43f24..fa7cb58 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/OplogCancelledException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/OplogCancelledException.java
@@ -19,7 +19,7 @@ package com.gemstone.gemfire.distributed;
 import com.gemstone.gemfire.CancelException;
 
 /**
- * Thrown when a GemFire gateway has been terminated.
+ * Thrown when a GemFire operation log has been terminated.
  * 
  * @since GemFire 6.0
  */

http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/5e0050de/geode-core/src/main/java/com/gemstone/gemfire/distributed/PoolCancelledException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/PoolCancelledException.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/PoolCancelledException.java
index 9eed2b7..4cbd994 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/PoolCancelledException.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/PoolCancelledException.java
@@ -19,7 +19,7 @@ package com.gemstone.gemfire.distributed;
 import com.gemstone.gemfire.CancelException;
 
 /**
- * Thrown when a GemFire pool has been cancelled.
+ * Thrown when a GemFire connection pool has been terminated.
  * 
  * @since GemFire 6.0
  */