Uses of Interface
org.apache.accumulo.core.client.security.tokens.AuthenticationToken

Packages that use AuthenticationToken
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.client.security.tokens   
org.apache.accumulo.core.security   
org.apache.accumulo.core.util.shell   
 

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

Methods in org.apache.accumulo.core.cli that return AuthenticationToken
 AuthenticationToken ClientOpts.getToken()
           
 

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

Methods in org.apache.accumulo.core.client with parameters of type AuthenticationToken
 Connector ZooKeeperInstance.getConnector(String principal, AuthenticationToken token)
           
 Connector Instance.getConnector(String principal, AuthenticationToken token)
          Returns a connection to this instance of accumulo.
 

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

Methods in org.apache.accumulo.core.client.admin with parameters of type AuthenticationToken
 boolean SecurityOperations.authenticateUser(String principal, AuthenticationToken token)
          Verify a username/password combination is valid
 

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

Methods in org.apache.accumulo.core.client.impl with parameters of type AuthenticationToken
 boolean SecurityOperationsImpl.authenticateUser(String principal, AuthenticationToken token)
           
 

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

Methods in org.apache.accumulo.core.client.mapred that return AuthenticationToken
protected static AuthenticationToken AccumuloOutputFormat.getAuthenticationToken(org.apache.hadoop.mapred.JobConf job)
          Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.
protected static AuthenticationToken AbstractInputFormat.getAuthenticationToken(org.apache.hadoop.mapred.JobConf job)
          Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.
 

Methods in org.apache.accumulo.core.client.mapred with parameters of type AuthenticationToken
static void AccumuloOutputFormat.setConnectorInfo(org.apache.hadoop.mapred.JobConf job, String principal, AuthenticationToken token)
          Sets the connector information needed to communicate with Accumulo in this job.
static void AbstractInputFormat.setConnectorInfo(org.apache.hadoop.mapred.JobConf job, String principal, AuthenticationToken token)
          Sets the connector information needed to communicate with Accumulo in this job.
 

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

Methods in org.apache.accumulo.core.client.mapreduce that return AuthenticationToken
protected static AuthenticationToken AccumuloOutputFormat.getAuthenticationToken(org.apache.hadoop.mapreduce.JobContext context)
          Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.
protected static AuthenticationToken AbstractInputFormat.getAuthenticationToken(org.apache.hadoop.mapreduce.JobContext context)
          Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.
 AuthenticationToken RangeInputSplit.getToken()
           
 

Methods in org.apache.accumulo.core.client.mapreduce with parameters of type AuthenticationToken
static void AccumuloOutputFormat.setConnectorInfo(org.apache.hadoop.mapreduce.Job job, String principal, AuthenticationToken token)
          Sets the connector information needed to communicate with Accumulo in this job.
static void AbstractInputFormat.setConnectorInfo(org.apache.hadoop.mapreduce.Job job, String principal, AuthenticationToken token)
          Sets the connector information needed to communicate with Accumulo in this job.
 void RangeInputSplit.setToken(AuthenticationToken token)
           
 

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

Methods in org.apache.accumulo.core.client.mapreduce.lib.impl that return AuthenticationToken
static AuthenticationToken ConfiguratorBase.getAuthenticationToken(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
          Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured.
static AuthenticationToken ConfiguratorBase.getTokenFromFile(org.apache.hadoop.conf.Configuration conf, String principal, String tokenFile)
          Reads from the token file in distributed cache.
 

Methods in org.apache.accumulo.core.client.mapreduce.lib.impl with parameters of type AuthenticationToken
static void ConfiguratorBase.setConnectorInfo(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String principal, AuthenticationToken token)
          Sets the connector information needed to communicate with Accumulo in this job.
 

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

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

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

Methods in org.apache.accumulo.core.client.mock with parameters of type AuthenticationToken
 Connector MockInstance.getConnector(String principal, AuthenticationToken token)
           
 

Uses of AuthenticationToken in org.apache.accumulo.core.client.security.tokens
 

Classes in org.apache.accumulo.core.client.security.tokens that implement AuthenticationToken
 class CredentialProviderToken
          An AuthenticationToken backed by a Hadoop CredentialProvider.
 class NullToken
           
 class PasswordToken
           
 

Methods in org.apache.accumulo.core.client.security.tokens with type parameters of type AuthenticationToken
static
<T extends AuthenticationToken>
T
AuthenticationToken.AuthenticationTokenSerializer.deserialize(Class<T> tokenType, byte[] tokenBytes)
          A convenience method to create tokens from serialized bytes, created by AuthenticationToken.AuthenticationTokenSerializer.serialize(AuthenticationToken)
 

Methods in org.apache.accumulo.core.client.security.tokens that return AuthenticationToken
 AuthenticationToken AuthenticationToken.clone()
           
static AuthenticationToken AuthenticationToken.AuthenticationTokenSerializer.deserialize(String tokenClassName, byte[] tokenBytes)
          An alternate version of AuthenticationToken.AuthenticationTokenSerializer.deserialize(Class, byte[]) that accepts a token class name rather than a token class.
 

Methods in org.apache.accumulo.core.client.security.tokens with parameters of type AuthenticationToken
static byte[] AuthenticationToken.AuthenticationTokenSerializer.serialize(AuthenticationToken token)
          A convenience method to serialize tokens.
 

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

Methods in org.apache.accumulo.core.security that return AuthenticationToken
 AuthenticationToken Credentials.getToken()
          Gets the authentication token.
 

Constructors in org.apache.accumulo.core.security with parameters of type AuthenticationToken
Credentials(String principal, AuthenticationToken token)
          Creates a new credentials object.
 

Uses of AuthenticationToken in org.apache.accumulo.core.util.shell
 

Methods in org.apache.accumulo.core.util.shell that return AuthenticationToken
 AuthenticationToken ShellOptionsJC.TokenConverter.convert(String value)
           
 AuthenticationToken ShellOptionsJC.getAuthenticationToken()
           
 AuthenticationToken Shell.getToken()
           
 

Methods in org.apache.accumulo.core.util.shell with parameters of type AuthenticationToken
 void Shell.updateUser(String principal, AuthenticationToken token)
           
 



Copyright © 2015 Apache Accumulo Project. All rights reserved.