Uses of Class
org.apache.hadoop.hbase.security.access.TablePermission

Packages that use TablePermission
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
org.apache.hadoop.hbase.security.access   
 

Uses of TablePermission in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf that return TablePermission
static TablePermission ProtobufUtil.toTablePermission(AccessControlProtos.Permission proto)
          Converts a Permission proto to a client TablePermission object.
 

Methods in org.apache.hadoop.hbase.protobuf that return types with arguments of type TablePermission
static com.google.common.collect.ListMultimap<String,TablePermission> ProtobufUtil.toUserTablePermissions(AccessControlProtos.UserTablePermissions proto)
          Convert a protobuf UserTablePermissions to a ListMultimap where key is username.
 

Method parameters in org.apache.hadoop.hbase.protobuf with type arguments of type TablePermission
static AccessControlProtos.UserTablePermissions ProtobufUtil.toUserTablePermissions(com.google.common.collect.ListMultimap<String,TablePermission> perm)
          Convert a ListMultimap where key is username to a protobuf UserPermission
 

Uses of TablePermission in org.apache.hadoop.hbase.security.access
 

Subclasses of TablePermission in org.apache.hadoop.hbase.security.access
 class UserPermission
          Represents an authorization for access over the given table, column family plus qualifier, for the given user.
 

Methods in org.apache.hadoop.hbase.security.access that return types with arguments of type TablePermission
static com.google.common.collect.ListMultimap<String,TablePermission> AccessControlLists.readPermissions(byte[] data, org.apache.hadoop.conf.Configuration conf)
          Reads a set of permissions as Writable instances from the input stream.
 

Method parameters in org.apache.hadoop.hbase.security.access with type arguments of type TablePermission
 void TableAuthManager.setGroupPermissions(String group, byte[] table, List<TablePermission> perms)
          Overwrites the existing permission set for a group and triggers an update for zookeeper synchronization.
 void TableAuthManager.setUserPermissions(String username, byte[] table, List<TablePermission> perms)
          Overwrites the existing permission set for a given user for a table, and triggers an update for zookeeper synchronization.
static byte[] AccessControlLists.writePermissionsAsBytes(com.google.common.collect.ListMultimap<String,TablePermission> perms, org.apache.hadoop.conf.Configuration conf)
          Writes a set of permissions as Writable instances and returns the resulting byte array.
 void TableAuthManager.writeToZooKeeper(byte[] table, org.apache.hadoop.hbase.security.access.TableAuthManager.PermissionCache<TablePermission> tablePerms)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.