You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2015/09/24 20:08:30 UTC

[2/6] hbase git commit: HBASE-13324 o.a.h.h.Coprocessor should be LimitedPrivate("Coprocessor")

HBASE-13324 o.a.h.h.Coprocessor should be LimitedPrivate("Coprocessor")


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

Branch: refs/heads/branch-1
Commit: 12e2341f3de39ba67256d6734037d5a08e847f2c
Parents: e38fd84
Author: Andrew Purtell <ap...@apache.org>
Authored: Thu Sep 24 10:57:32 2015 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Thu Sep 24 10:57:39 2015 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/Coprocessor.java       | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/12e2341f/hbase-client/src/main/java/org/apache/hadoop/hbase/Coprocessor.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/Coprocessor.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/Coprocessor.java
index a20bde6..3bd737f 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/Coprocessor.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/Coprocessor.java
@@ -22,11 +22,13 @@ package org.apache.hadoop.hbase;
 import java.io.IOException;
 
 import org.apache.hadoop.hbase.classification.InterfaceAudience;
+import org.apache.hadoop.hbase.classification.InterfaceStability;
 
 /**
  * Coprocessor interface.
  */
-@InterfaceAudience.Private
+@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.COPROC)
+@InterfaceStability.Evolving
 public interface Coprocessor {
   int VERSION = 1;