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

Packages that use Authorizations
org.apache.accumulo.core   
org.apache.accumulo.core.cli   
org.apache.accumulo.core.client   
org.apache.accumulo.core.client.admin   
org.apache.accumulo.core.client.impl   
org.apache.accumulo.core.client.mapred   
org.apache.accumulo.core.client.mapreduce   
org.apache.accumulo.core.client.mapreduce.lib.impl This package exists to store common helpers for configuring MapReduce jobs in a single location. 
org.apache.accumulo.core.client.mapreduce.lib.util   
org.apache.accumulo.core.client.mock   
org.apache.accumulo.core.constraints   
org.apache.accumulo.core.iterators.system   
org.apache.accumulo.core.iterators.user   
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
          Deprecated. since 1.6.0; Use EMPTY instead
 

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

Fields in org.apache.accumulo.core.cli declared as Authorizations
 Authorizations ClientOpts.auths
           
 

Methods in org.apache.accumulo.core.cli that return Authorizations
 Authorizations ClientOpts.AuthConverter.convert(String value)
           
 

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

Methods in org.apache.accumulo.core.client that return Authorizations
 Authorizations ConditionalWriterConfig.getAuthorizations()
           
 

Methods in org.apache.accumulo.core.client with parameters of type Authorizations
abstract  BatchDeleter Connector.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, BatchWriterConfig config)
           
abstract  BatchDeleter Connector.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
          Deprecated. since 1.5.0; Use Connector.createBatchDeleter(String, Authorizations, int, BatchWriterConfig) instead.
abstract  BatchScanner Connector.createBatchScanner(String tableName, Authorizations authorizations, int numQueryThreads)
          Factory method to create a BatchScanner connected to Accumulo.
abstract  Scanner Connector.createScanner(String tableName, Authorizations authorizations)
          Factory method to create a Scanner connected to Accumulo.
 ConditionalWriterConfig ConditionalWriterConfig.setAuthorizations(Authorizations auths)
          A set of authorization labels that will be checked against the column visibility of each key in order to filter data.
 

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

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

Methods in org.apache.accumulo.core.client.admin with parameters of type Authorizations
 void SecurityOperations.changeUserAuthorizations(String principal, Authorizations authorizations)
          Set the user's record-level authorizations
 void SecurityOperations.createUser(String user, byte[] password, Authorizations authorizations)
          Deprecated. since 1.5.0; use SecurityOperations.createLocalUser(String, PasswordToken) or the user management functions of your configured authenticator instead.
 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 that return Authorizations
 Authorizations ActiveScanImpl.getAuthorizations()
           
 Authorizations SecurityOperationsImpl.getUserAuthorizations(String principal)
           
 

Methods in org.apache.accumulo.core.client.impl with parameters of type Authorizations
 void SecurityOperationsImpl.changeUserAuthorizations(String principal, Authorizations authorizations)
           
 BatchDeleter ConnectorImpl.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, BatchWriterConfig config)
           
 BatchDeleter ConnectorImpl.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
          Deprecated. 
 BatchScanner ConnectorImpl.createBatchScanner(String tableName, Authorizations authorizations, int numQueryThreads)
           
 Scanner ConnectorImpl.createScanner(String tableName, Authorizations authorizations)
           
 void SecurityOperationsImpl.createUser(String user, byte[] password, Authorizations authorizations)
          Deprecated. 
static void TabletServerBatchReaderIterator.doLookup(Instance instance, Credentials credentials, String server, Map<KeyExtent,List<Range>> requested, Map<KeyExtent,List<Range>> failures, Map<KeyExtent,List<Range>> unscanned, TabletServerBatchReaderIterator.ResultReceiver receiver, List<Column> columns, ScannerOptions options, Authorizations authorizations, AccumuloConfiguration conf)
           
static boolean ThriftScanner.getBatchFromServer(Instance instance, Credentials credentials, Range range, KeyExtent extent, String server, SortedMap<Key,Value> results, SortedSet<Column> fetchedColumns, List<IterInfo> serverSideIteratorList, Map<String,Map<String,String>> serverSideIteratorOptions, int size, Authorizations authorizations, boolean retry, AccumuloConfiguration conf)
           
 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)
           
 

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

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

Methods in org.apache.accumulo.core.client.mapred that return Authorizations
protected static Authorizations AbstractInputFormat.getScanAuthorizations(org.apache.hadoop.mapred.JobConf job)
          Gets the authorizations to set for the scans from the configuration.
 

Methods in org.apache.accumulo.core.client.mapred with parameters of type Authorizations
static void AbstractInputFormat.setScanAuthorizations(org.apache.hadoop.mapred.JobConf job, Authorizations auths)
          Sets the Authorizations used to scan.
 

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

Methods in org.apache.accumulo.core.client.mapreduce that return Authorizations
 Authorizations RangeInputSplit.getAuths()
           
protected static Authorizations AbstractInputFormat.getScanAuthorizations(org.apache.hadoop.mapreduce.JobContext context)
          Gets the authorizations to set for the scans from the configuration.
 

Methods in org.apache.accumulo.core.client.mapreduce with parameters of type Authorizations
 void RangeInputSplit.setAuths(Authorizations auths)
           
static void AbstractInputFormat.setScanAuthorizations(org.apache.hadoop.mapreduce.Job job, Authorizations auths)
          Sets the Authorizations used to scan.
 

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

Methods in org.apache.accumulo.core.client.mapreduce.lib.impl that return Authorizations
static Authorizations InputConfigurator.getScanAuthorizations(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
          Gets the authorizations to set for the scans from the configuration.
 

Methods in org.apache.accumulo.core.client.mapreduce.lib.impl with parameters of type Authorizations
static void InputConfigurator.setScanAuthorizations(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, Authorizations auths)
          Sets the Authorizations used to scan.
 

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

Methods in org.apache.accumulo.core.client.mapreduce.lib.util that return Authorizations
static Authorizations InputConfigurator.getScanAuthorizations(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
          Deprecated. since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.
 

Methods in org.apache.accumulo.core.client.mapreduce.lib.util with parameters of type Authorizations
static void InputConfigurator.setScanAuthorizations(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, Authorizations auths)
          Deprecated. since 1.6.0; Configure your job with the appropriate InputFormat or OutputFormat.
 

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 with parameters of type Authorizations
 BatchDeleter MockConnector.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, BatchWriterConfig config)
           
 BatchDeleter MockConnector.createBatchDeleter(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
          Deprecated. 
 BatchScanner MockAccumulo.createBatchScanner(String tableName, Authorizations authorizations)
           
 BatchScanner MockConnector.createBatchScanner(String tableName, Authorizations authorizations, int numQueryThreads)
           
 Scanner MockConnector.createScanner(String tableName, Authorizations authorizations)
           
 

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()
          Deprecated. 
 

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

Fields in org.apache.accumulo.core.iterators.system declared as Authorizations
protected  Authorizations VisibilityFilter.authorizations
           
 

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.iterators.user
 

Methods in org.apache.accumulo.core.iterators.user with parameters of type Authorizations
static void VisibilityFilter.setAuthorizations(IteratorSetting setting, Authorizations auths)
           
static void TransformingIterator.setAuthorizations(IteratorSetting config, Authorizations auths)
          Configure authorizations used for post transformation filtering.
 

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

Fields in org.apache.accumulo.core.security declared as Authorizations
static Authorizations Authorizations.EMPTY
          An empty set of authorizations.
 

Constructors in org.apache.accumulo.core.security with parameters of type Authorizations
VisibilityEvaluator(Authorizations authorizations)
          Creates a new evaluator for the given collection of authorizations.
 

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)
           
 



Copyright © 2015 Apache Accumulo Project. All rights reserved.