Uses of Class
org.apache.accumulo.core.security.Authorizations
Package
Description
Mock framework for Accumulo
-
Uses of Authorizations in org.apache.accumulo.core.client
Modifier and TypeMethodDescriptionClientSideIteratorScanner.getAuthorizations()
ConditionalWriterConfig.getAuthorizations()
ScannerBase.getAuthorizations()
Returns the authorizations that have been set on the scannerModifier and TypeMethodDescriptionabstract BatchDeleter
Connector.createBatchDeleter
(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads) Deprecated.abstract BatchDeleter
Connector.createBatchDeleter
(String tableName, Authorizations authorizations, int numQueryThreads, BatchWriterConfig config) 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.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
Modifier and TypeMethodDescriptionabstract Authorizations
ActiveScan.getAuthorizations()
SecurityOperations.getUserAuthorizations
(String principal) Retrieves the user's authorizations for scanningModifier and TypeMethodDescriptionvoid
SecurityOperations.changeUserAuthorizations
(String principal, Authorizations authorizations) Set the user's record-level authorizationsvoid
SecurityOperations.createUser
(String user, byte[] password, Authorizations authorizations) Deprecated.since 1.5.0; useSecurityOperations.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.mapred
Modifier and TypeMethodDescriptionprotected static Authorizations
AbstractInputFormat.getScanAuthorizations
(org.apache.hadoop.mapred.JobConf job) Gets the authorizations to set for the scans from the configuration.Modifier and TypeMethodDescriptionstatic void
AbstractInputFormat.setScanAuthorizations
(org.apache.hadoop.mapred.JobConf job, Authorizations auths) Sets theAuthorizations
used to scan. -
Uses of Authorizations in org.apache.accumulo.core.client.mapreduce
Modifier and TypeMethodDescriptionRangeInputSplit.getAuths()
protected static Authorizations
AbstractInputFormat.getScanAuthorizations
(org.apache.hadoop.mapreduce.JobContext context) Gets the authorizations to set for the scans from the configuration.Modifier and TypeMethodDescriptionvoid
RangeInputSplit.setAuths
(Authorizations auths) static void
AbstractInputFormat.setScanAuthorizations
(org.apache.hadoop.mapreduce.Job job, Authorizations auths) Sets theAuthorizations
used to scan. -
Uses of Authorizations in org.apache.accumulo.core.client.mapreduce.lib.util
Modifier and TypeMethodDescriptionstatic 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.Modifier and TypeMethodDescriptionstatic 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
Modifier and TypeFieldDescriptionprotected final Authorizations
MockScannerBase.auths
Deprecated.Modifier and TypeMethodDescriptionMockConnector.createBatchDeleter
(String tableName, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads) Deprecated.MockConnector.createBatchDeleter
(String tableName, Authorizations authorizations, int numQueryThreads, BatchWriterConfig config) Deprecated.MockAccumulo.createBatchScanner
(String tableName, Authorizations authorizations) Deprecated.MockConnector.createBatchScanner
(String tableName, Authorizations authorizations, int numQueryThreads) Deprecated.MockConnector.createScanner
(String tableName, Authorizations authorizations) Deprecated.ModifierConstructorDescriptionMockBatchDeleter
(MockAccumulo acc, String tableName, Authorizations auths) Deprecated.Create aBatchDeleter
for the specified instance on the specified table where the writer uses the specifiedAuthorizations
.MockBatchScanner
(MockTable mockTable, Authorizations authorizations) Deprecated. -
Uses of Authorizations in org.apache.accumulo.core.client.rfile
Modifier and TypeMethodDescriptionRFile.ScannerOptions.withAuthorizations
(Authorizations auths) The authorizations passed here will be used to filter Keys, from theScanner
, based on the content of the column visibility field. -
Uses of Authorizations in org.apache.accumulo.core.security
Modifier and TypeFieldDescriptionstatic final Authorizations
Authorizations.EMPTY
An empty set of authorizations.ModifierConstructorDescriptionVisibilityEvaluator
(Authorizations authorizations) Creates a new evaluator for the given collection of authorizations.
Connector.createBatchDeleter(String, Authorizations, int, BatchWriterConfig)
instead.