HBASE-15783 AccessControlConstants#OP_ATTRIBUTE_ACL_STRATEGY_CELL_FIRST

not used any more. (Ram)
This commit is contained in:
Ramkrishna 2016-06-21 10:51:42 +05:30
parent 3de0c63105
commit a9950e0001
1 changed files with 0 additions and 7 deletions

View File

@ -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 };
}