Class TablePermission

java.lang.Object
org.apache.hadoop.io.VersionedWritable
org.apache.hadoop.hbase.security.access.Permission
org.apache.hadoop.hbase.security.access.TablePermission
All Implemented Interfaces:
org.apache.hadoop.io.Writable

@Public public class TablePermission extends Permission
Represents an authorization for access for the given actions, optionally restricted to the given column family or column qualifier, over the given table. If the family property is null, it implies full table access.
  • Field Details

  • Constructor Details

    • TablePermission

      TablePermission(TableName table, byte[] family, byte[] qualifier, Permission.Action... assigned)
      Construct a table:family:qualifier permission.
      Parameters:
      table - table name
      family - family name
      qualifier - qualifier name
      assigned - assigned actions
  • Method Details