Uses of Class
org.apache.accumulo.core.security.Authorizations
Packages that use Authorizations
Package
Description
Mock framework for Accumulo
-
Uses of Authorizations in org.apache.accumulo.core.client
Methods in org.apache.accumulo.core.client that return AuthorizationsModifier and TypeMethodDescriptionClientSideIteratorScanner.getAuthorizations()
ConditionalWriterConfig.getAuthorizations()
ScannerBase.getAuthorizations()
Returns the authorizations that have been set on the scannerMethods in org.apache.accumulo.core.client with parameters of type AuthorizationsModifier 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
Methods in org.apache.accumulo.core.client.admin that return AuthorizationsModifier and TypeMethodDescriptionabstract Authorizations
ActiveScan.getAuthorizations()
SecurityOperations.getUserAuthorizations
(String principal) Retrieves the user's authorizations for scanningMethods in org.apache.accumulo.core.client.admin with parameters of type AuthorizationsModifier 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
Methods in org.apache.accumulo.core.client.mapred that return AuthorizationsModifier and TypeMethodDescriptionprotected 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 AuthorizationsModifier 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
Methods in org.apache.accumulo.core.client.mapreduce that return AuthorizationsModifier 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.Methods in org.apache.accumulo.core.client.mapreduce with parameters of type AuthorizationsModifier 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
Methods in org.apache.accumulo.core.client.mapreduce.lib.util that return AuthorizationsModifier 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.Methods in org.apache.accumulo.core.client.mapreduce.lib.util with parameters of type AuthorizationsModifier 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
Fields in org.apache.accumulo.core.client.mock declared as AuthorizationsModifier and TypeFieldDescriptionprotected final Authorizations
MockScannerBase.auths
Deprecated.Methods in org.apache.accumulo.core.client.mock that return AuthorizationsMethods in org.apache.accumulo.core.client.mock with parameters of type AuthorizationsModifier 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.Constructors in org.apache.accumulo.core.client.mock with parameters of type AuthorizationsModifierConstructorDescriptionMockBatchDeleter
(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
Methods in org.apache.accumulo.core.client.rfile with parameters of type AuthorizationsModifier 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
Fields in org.apache.accumulo.core.security declared as AuthorizationsModifier and TypeFieldDescriptionstatic final Authorizations
Authorizations.EMPTY
An empty set of authorizations.Constructors in org.apache.accumulo.core.security with parameters of type AuthorizationsModifierConstructorDescriptionVisibilityEvaluator
(Authorizations authorizations) Creates a new evaluator for the given collection of authorizations.
Connector.createBatchDeleter(String, Authorizations, int, BatchWriterConfig)
instead.