You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/04/26 21:39:55 UTC

hbase git commit: HBASE-17873 Change the IA.Public annotation to IA.Private for unstable API

Repository: hbase
Updated Branches:
  refs/heads/master 053e61541 -> 177344cdb


HBASE-17873 Change the IA.Public annotation to IA.Private for unstable API

Signed-off-by: Sean Busbey <bu...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/177344cd
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/177344cd
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/177344cd

Branch: refs/heads/master
Commit: 177344cdbf8a08a6d225312b2327ff1ea8a21067
Parents: 053e615
Author: zhangduo <zh...@apache.org>
Authored: Thu Apr 6 11:56:44 2017 +0800
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Apr 26 16:39:11 2017 -0500

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java  | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/177344cd/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
index 3343c7a..352ef1b 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncAdmin.java
@@ -37,9 +37,12 @@ import org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
 import org.apache.hadoop.hbase.util.Pair;
 
 /**
- *  The asynchronous administrative API for HBase.
+ * The asynchronous administrative API for HBase.
+ * <p>
+ * This feature is still under development, so marked as IA.Private. Will change to public when
+ * done. Use it with caution.
  */
-@InterfaceAudience.Public
+@InterfaceAudience.Private
 public interface AsyncAdmin {
 
   /**