Uses of Class
org.apache.hadoop.security.token.TokenIdentifier

Packages that use TokenIdentifier
org.apache.hadoop.ipc Tools to help define network clients and servers. 
org.apache.hadoop.mapreduce.security   
org.apache.hadoop.mapreduce.security.token   
org.apache.hadoop.mapreduce.security.token.delegation   
org.apache.hadoop.security   
org.apache.hadoop.security.token   
org.apache.hadoop.security.token.delegation   
 

Uses of TokenIdentifier in org.apache.hadoop.ipc
 

Method parameters in org.apache.hadoop.ipc with type arguments of type TokenIdentifier
static RPC.Server RPC.getServer(Object instance, String bindAddress, int port, int numHandlers, boolean verbose, Configuration conf, SecretManager<? extends TokenIdentifier> secretManager)
          Construct a server for a protocol implementation instance listening on a port and address, with a secret manager.
 

Constructor parameters in org.apache.hadoop.ipc with type arguments of type TokenIdentifier
RPC.Server(Object instance, Configuration conf, String bindAddress, int port, int numHandlers, boolean verbose, SecretManager<? extends TokenIdentifier> secretManager)
          Construct an RPC server.
Server(String bindAddress, int port, Class<? extends Writable> paramClass, int handlerCount, Configuration conf, String serverName, SecretManager<? extends TokenIdentifier> secretManager)
          Constructs a server listening on the named port and address.
 

Uses of TokenIdentifier in org.apache.hadoop.mapreduce.security
 

Method parameters in org.apache.hadoop.mapreduce.security with type arguments of type TokenIdentifier
static void TokenCache.setJobToken(Token<? extends TokenIdentifier> t, Credentials credentials)
          store job token
 

Uses of TokenIdentifier in org.apache.hadoop.mapreduce.security.token
 

Subclasses of TokenIdentifier in org.apache.hadoop.mapreduce.security.token
 class JobTokenIdentifier
          The token identifier for job token
 

Method parameters in org.apache.hadoop.mapreduce.security.token with type arguments of type TokenIdentifier
 Token<JobTokenIdentifier> JobTokenSelector.selectToken(Text service, Collection<Token<? extends TokenIdentifier>> tokens)
           
 

Uses of TokenIdentifier in org.apache.hadoop.mapreduce.security.token.delegation
 

Subclasses of TokenIdentifier in org.apache.hadoop.mapreduce.security.token.delegation
 class DelegationTokenIdentifier
          A delegation token identifier that is specific to MapReduce.
 

Uses of TokenIdentifier in org.apache.hadoop.security
 

Methods in org.apache.hadoop.security with type parameters of type TokenIdentifier
static
<T extends TokenIdentifier>
T
SaslRpcServer.getIdentifier(String id, SecretManager<T> secretManager)
           
 

Methods in org.apache.hadoop.security that return types with arguments of type TokenIdentifier
 Collection<Token<? extends TokenIdentifier>> Credentials.getAllTokens()
          Return all the tokens in the in-memory map
 Token<? extends TokenIdentifier> Credentials.getToken(Text alias)
          Returns the Token object for the alias
 Set<TokenIdentifier> UserGroupInformation.getTokenIdentifiers()
          Get the set of TokenIdentifiers belonging to this UGI
 Collection<Token<? extends TokenIdentifier>> UserGroupInformation.getTokens()
          Obtain the collection of tokens associated with this user.
 

Methods in org.apache.hadoop.security with parameters of type TokenIdentifier
 boolean UserGroupInformation.addTokenIdentifier(TokenIdentifier tokenId)
          Add a TokenIdentifier to this UGI.
 

Method parameters in org.apache.hadoop.security with type arguments of type TokenIdentifier
 void Credentials.addToken(Text alias, Token<? extends TokenIdentifier> t)
          Add a token in the storage (in memory)
 boolean UserGroupInformation.addToken(Token<? extends TokenIdentifier> token)
          Add a token to this UGI
 

Constructor parameters in org.apache.hadoop.security with type arguments of type TokenIdentifier
SaslRpcClient(SaslRpcServer.AuthMethod method, Token<? extends TokenIdentifier> token, String serverPrincipal)
          Create a SaslRpcClient for an authentication method
SaslRpcServer.SaslDigestCallbackHandler(SecretManager<TokenIdentifier> secretManager, Server.Connection connection)
           
 

Uses of TokenIdentifier in org.apache.hadoop.security.token
 

Classes in org.apache.hadoop.security.token with type parameters of type TokenIdentifier
 class SecretManager<T extends TokenIdentifier>
          The server-side secret manager for each token type.
 class Token<T extends TokenIdentifier>
          The client-side form of the token.
 interface TokenSelector<T extends TokenIdentifier>
          Select token of type T from tokens for use with named service
 

Method parameters in org.apache.hadoop.security.token with type arguments of type TokenIdentifier
 Token<T> TokenSelector.selectToken(Text service, Collection<Token<? extends TokenIdentifier>> tokens)
           
 

Uses of TokenIdentifier in org.apache.hadoop.security.token.delegation
 

Subclasses of TokenIdentifier in org.apache.hadoop.security.token.delegation
 class AbstractDelegationTokenIdentifier
           
 

Method parameters in org.apache.hadoop.security.token.delegation with type arguments of type TokenIdentifier
 Token<TokenIdent> AbstractDelegationTokenSelector.selectToken(Text service, Collection<Token<? extends TokenIdentifier>> tokens)
           
 



Copyright © 2009 The Apache Software Foundation