Uses of Class
org.apache.accumulo.core.security.Authorizations

Packages that use Authorizations
org.apache.accumulo.core   
org.apache.accumulo.core.client   
org.apache.accumulo.core.client.admin   
org.apache.accumulo.core.client.impl   
org.apache.accumulo.core.client.mapreduce   
org.apache.accumulo.core.client.mock   
org.apache.accumulo.core.constraints   
org.apache.accumulo.core.iterators.filter   
org.apache.accumulo.core.iterators.system   
org.apache.accumulo.core.security   
org.apache.accumulo.core.util.shell.commands   
 

Uses of Authorizations in org.apache.accumulo.core
 

Fields in org.apache.accumulo.core declared as Authorizations
static Authorizations Constants.NO_AUTHS
           
 

Uses of Authorizations in org.apache.accumulo.core.client
 

Methods in org.apache.accumulo.core.client with parameters of type Authorizations
 BatchDeleter Connector.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
          Factory method to create a BatchDeleter connected to Accumulo.
 BatchScanner Connector.createBatchScanner(String tableName, Authorizations authorizations, int numQueryThreads)
          Factory method to create a BatchScanner connected to Accumulo.
 Scanner Connector.createScanner(String tableName, Authorizations authorizations)
          Factory method to create a Scanner connected to Accumulo.
 

Uses of Authorizations in org.apache.accumulo.core.client.admin
 

Methods in org.apache.accumulo.core.client.admin that return Authorizations
 Authorizations SecurityOperations.getUserAuthorizations(String user)
          Retrieves the user's authorizations for scanning
 Authorizations SecurityOperationsImpl.getUserAuthorizations(String user)
          Retrieves the user's authorizations for scanning
 

Methods in org.apache.accumulo.core.client.admin with parameters of type Authorizations
 void SecurityOperations.changeUserAuthorizations(String user, Authorizations authorizations)
          Set the user's record-level authorizations
 void SecurityOperationsImpl.changeUserAuthorizations(String user, Authorizations authorizations)
          Set the user's record-level authorizations
 void SecurityOperations.createUser(String user, byte[] password, Authorizations authorizations)
          Create a user
 void SecurityOperationsImpl.createUser(String user, byte[] password, Authorizations authorizations)
          Create a user
 org.apache.hadoop.io.Text TableOperationsImpl.getMaxRow(String tableName, Authorizations auths, org.apache.hadoop.io.Text startRow, boolean startInclusive, org.apache.hadoop.io.Text endRow, boolean endInclusive)
           
 org.apache.hadoop.io.Text TableOperations.getMaxRow(String tableName, Authorizations auths, org.apache.hadoop.io.Text startRow, boolean startInclusive, org.apache.hadoop.io.Text endRow, boolean endInclusive)
          Finds the max row within a given range.
 

Uses of Authorizations in org.apache.accumulo.core.client.impl
 

Methods in org.apache.accumulo.core.client.impl with parameters of type Authorizations
 BatchDeleter ConnectorImpl.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
           
 BatchScanner ConnectorImpl.createBatchScanner(String tableName, Authorizations authorizations, int numQueryThreads)
           
 Scanner ConnectorImpl.createScanner(String tableName, Authorizations authorizations)
           
static boolean ThriftScanner.getBatchFromServer(AuthInfo credentials, org.apache.hadoop.io.Text startRow, KeyExtent extent, String server, SortedMap<Key,Value> results, SortedSet<Column> fetchedColumns, boolean skipStartKey, int size, Authorizations authorizations, boolean retry, AccumuloConfiguration conf)
           
 

Constructors in org.apache.accumulo.core.client.impl with parameters of type Authorizations
OfflineScanner(Instance instance, AuthInfo credentials, String tableId, Authorizations authorizations)
           
ScannerImpl(Instance instance, AuthInfo credentials, String table, Authorizations authorizations)
           
TabletServerBatchDeleter(Instance instance, AuthInfo credentials, String tableId, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
           
TabletServerBatchReader(Instance instance, AuthInfo credentials, String table, Authorizations authorizations, int numQueryThreads)
           
TabletServerBatchReaderIterator(Instance instance, AuthInfo credentials, String table, Authorizations authorizations, ArrayList<Range> ranges, int numThreads, ExecutorService queryThreadPool, ScannerOptions scannerOptions)
           
ThriftScanner.ScanState(AuthInfo credentials, org.apache.hadoop.io.Text tableName, Authorizations authorizations, Range range, SortedSet<Column> fetchedColumns, int size, List<IterInfo> serverSideIteratorList, Map<String,Map<String,String>> serverSideIteratorOptions, boolean isolated)
           
 

Uses of Authorizations in org.apache.accumulo.core.client.mapreduce
 

Methods in org.apache.accumulo.core.client.mapreduce that return Authorizations
protected static Authorizations InputFormatBase.getAuthorizations(org.apache.hadoop.conf.Configuration conf)
          Gets the authorizations to set for the scans from the configuration.
protected static Authorizations InputFormatBase.getAuthorizations(org.apache.hadoop.mapreduce.JobContext job)
          Deprecated. Use InputFormatBase.getAuthorizations(Configuration) instead
 

Methods in org.apache.accumulo.core.client.mapreduce with parameters of type Authorizations
static void InputFormatBase.setInputInfo(org.apache.hadoop.conf.Configuration conf, String user, byte[] passwd, String table, Authorizations auths)
          Initialize the user, table, and authorization information for the configuration object that will be used with an Accumulo InputFormat.
static void InputFormatBase.setInputInfo(org.apache.hadoop.mapreduce.JobContext job, String user, byte[] passwd, String table, Authorizations auths)
          Deprecated. Use InputFormatBase.setInputInfo(Configuration,String,byte[],String,Authorizations) instead
 

Uses of Authorizations in org.apache.accumulo.core.client.mock
 

Fields in org.apache.accumulo.core.client.mock declared as Authorizations
protected  Authorizations MockScannerBase.auths
           
 

Methods in org.apache.accumulo.core.client.mock that return Authorizations
 Authorizations MockSecurityOperations.getUserAuthorizations(String name)
           
 

Methods in org.apache.accumulo.core.client.mock with parameters of type Authorizations
 void MockSecurityOperations.changeUserAuthorizations(String name, Authorizations authorizations)
           
 BatchDeleter MockConnector.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
           
 BatchScanner MockAccumulo.createBatchScanner(String tableName, Authorizations authorizations)
           
 BatchScanner MockConnector.createBatchScanner(String tableName, Authorizations authorizations, int numQueryThreads)
           
 Scanner MockConnector.createScanner(String tableName, Authorizations authorizations)
           
 void MockSecurityOperations.createUser(String user, byte[] password, Authorizations authorizations)
           
 org.apache.hadoop.io.Text MockTableOperations.getMaxRow(String tableName, Authorizations auths, org.apache.hadoop.io.Text startRow, boolean startInclusive, org.apache.hadoop.io.Text endRow, boolean endInclusive)
           
 

Constructors in org.apache.accumulo.core.client.mock with parameters of type Authorizations
MockBatchDeleter(MockAccumulo acc, String tableName, Authorizations auths)
          Create a BatchDeleter for the specified instance on the specified table where the writer uses the specified Authorizations.
MockBatchScanner(MockTable mockTable, Authorizations authorizations)
           
 

Uses of Authorizations in org.apache.accumulo.core.constraints
 

Methods in org.apache.accumulo.core.constraints that return Authorizations
 Authorizations Constraint.Environment.getAuthorizations()
           
 

Uses of Authorizations in org.apache.accumulo.core.iterators.filter
 

Constructors in org.apache.accumulo.core.iterators.filter with parameters of type Authorizations
VisibilityFilter(Authorizations authorizations, byte[] defaultVisibility)
          Deprecated.  
 

Uses of Authorizations in org.apache.accumulo.core.iterators.system
 

Constructors in org.apache.accumulo.core.iterators.system with parameters of type Authorizations
VisibilityFilter(SortedKeyValueIterator<Key,Value> iterator, Authorizations authorizations, byte[] defaultVisibility)
           
 

Uses of Authorizations in org.apache.accumulo.core.security
 

Methods in org.apache.accumulo.core.security that return Authorizations
 Authorizations VisibilityEvaluator.getAuthorizations()
           
 

Methods in org.apache.accumulo.core.security with parameters of type Authorizations
static VisibilityInterpreter VisibilityInterpreterFactory.create(ColumnVisibility cv, Authorizations authorizations)
           
 VisibilityInterpreter VisibilityInterpreter.create(ColumnVisibility visibility, Authorizations authorizations)
           
 void VisibilityInterpreter.merge(ColumnVisibility other, Authorizations authorizations)
           
 

Constructors in org.apache.accumulo.core.security with parameters of type Authorizations
VisibilityEvaluator(Authorizations authorizations)
          The VisibilityEvaluator computes a trie from the given Authorizations, that ColumnVisibility expressions can be evaluated against.
 

Uses of Authorizations in org.apache.accumulo.core.util.shell.commands
 

Methods in org.apache.accumulo.core.util.shell.commands that return Authorizations
protected  Authorizations ScanCommand.getAuths(org.apache.commons.cli.CommandLine cl, Shell shellState)
           
protected  Authorizations MaxRowCommand.getAuths(org.apache.commons.cli.CommandLine cl, Shell shellState)
           
 



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