You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ra...@apache.org on 2016/06/21 05:22:24 UTC

hbase git commit: HBASE-15783 AccessControlConstants#OP_ATTRIBUTE_ACL_STRATEGY_CELL_FIRST not used any more. (Ram)

Repository: hbase
Updated Branches:
  refs/heads/master 3de0c6310 -> a9950e000


HBASE-15783 AccessControlConstants#OP_ATTRIBUTE_ACL_STRATEGY_CELL_FIRST
not used any more. (Ram)


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

Branch: refs/heads/master
Commit: a9950e000187333d66dbad07a7a29f2f13ff910d
Parents: 3de0c63
Author: Ramkrishna <ra...@intel.com>
Authored: Tue Jun 21 10:51:42 2016 +0530
Committer: Ramkrishna <ra...@intel.com>
Committed: Tue Jun 21 10:51:42 2016 +0530

----------------------------------------------------------------------
 .../hadoop/hbase/security/access/AccessControlConstants.java  | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/a9950e00/hbase-client/src/main/java/org/apache/hadoop/hbase/security/access/AccessControlConstants.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/security/access/AccessControlConstants.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/security/access/AccessControlConstants.java
index 2705765..f5d16d4 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/security/access/AccessControlConstants.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/security/access/AccessControlConstants.java
@@ -45,11 +45,4 @@ public interface AccessControlConstants {
 
   /** Cell level ACL */
   public static final String OP_ATTRIBUTE_ACL = "acl";
-  /** Cell level ACL evaluation strategy */
-  public static final String OP_ATTRIBUTE_ACL_STRATEGY = "acl.strategy";
-  /** Default cell ACL evaluation strategy: Table and CF first, then ACL */
-  public static final byte[] OP_ATTRIBUTE_ACL_STRATEGY_DEFAULT = new byte[] { 0 };
-  /** Alternate cell ACL evaluation strategy: Cell ACL first, then table and CF */
-  public static final byte[] OP_ATTRIBUTE_ACL_STRATEGY_CELL_FIRST = new byte[] { 1 };
-
 }