Package | Description |
---|---|
org.apache.hadoop.crypto.key | |
org.apache.hadoop.crypto.key.kms | |
org.apache.hadoop.fs |
An abstract file system API.
|
org.apache.hadoop.fs.viewfs | |
org.apache.hadoop.security | |
org.apache.hadoop.security.token | |
org.apache.hadoop.security.token.delegation | |
org.apache.hadoop.security.token.delegation.web |
Modifier and Type | Method and Description |
---|---|
Token<?>[] |
KeyProviderDelegationTokenExtension.addDelegationTokens(String renewer,
Credentials credentials)
Passes the renewer and Credentials object to the underlying
KeyProviderDelegationTokenExtension.DelegationTokenExtension |
Token<?>[] |
KeyProviderDelegationTokenExtension.DelegationTokenExtension.addDelegationTokens(String renewer,
Credentials credentials)
The implementer of this class will take a renewer and add all
delegation tokens associated with the renewer to the
Credentials object if it is not already present, |
Modifier and Type | Method and Description |
---|---|
Void |
KeyProviderDelegationTokenExtension.DelegationTokenExtension.cancelDelegationToken(Token<?> token)
Cancels the given token.
|
long |
KeyProviderDelegationTokenExtension.DelegationTokenExtension.renewDelegationToken(Token<?> token)
Renews the given token.
|
Modifier and Type | Method and Description |
---|---|
Token<?>[] |
LoadBalancingKMSClientProvider.addDelegationTokens(String renewer,
Credentials credentials) |
Modifier and Type | Method and Description |
---|---|
void |
KMSClientProvider.KMSTokenRenewer.cancel(Token<?> token,
Configuration conf) |
Void |
LoadBalancingKMSClientProvider.cancelDelegationToken(Token<?> token) |
boolean |
KMSClientProvider.KMSTokenRenewer.isManaged(Token<?> token) |
long |
KMSClientProvider.KMSTokenRenewer.renew(Token<?> token,
Configuration conf) |
long |
LoadBalancingKMSClientProvider.renewDelegationToken(Token<?> token) |
Modifier and Type | Method and Description |
---|---|
Token<?>[] |
FileSystem.addDelegationTokens(String renewer,
Credentials credentials)
Obtain all delegation tokens used by this FileSystem that are not
already present in the given Credentials.
|
Token<?> |
DelegationTokenRenewer.Renewable.getRenewToken() |
Modifier and Type | Method and Description |
---|---|
<T extends TokenIdentifier> |
DelegationTokenRenewer.Renewable.setDelegationToken(Token<T> token)
Set delegation token.
|
Modifier and Type | Method and Description |
---|---|
List<Token<?>> |
ViewFs.getDelegationTokens(String renewer) |
Modifier and Type | Method and Description |
---|---|
Token<? extends TokenIdentifier> |
Credentials.getToken(Text alias)
Returns the Token object for the alias
|
Modifier and Type | Method and Description |
---|---|
Collection<Token<? extends TokenIdentifier>> |
Credentials.getAllTokens()
Return all the tokens in the in-memory map
|
Collection<Token<? extends TokenIdentifier>> |
UserGroupInformation.getTokens()
Obtain the collection of tokens associated with this user.
|
Modifier and Type | Method and Description |
---|---|
boolean |
UserGroupInformation.addToken(Text alias,
Token<? extends TokenIdentifier> token)
Add a named token to this UGI
|
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
|
static InetSocketAddress |
SecurityUtil.getTokenServiceAddr(Token<?> token)
Decode the given token's service field into an InetAddress
|
static void |
SecurityUtil.setTokenService(Token<?> token,
InetSocketAddress addr)
Set the given token's service to the format expected by the RPC client
|
Modifier and Type | Method and Description |
---|---|
Token<T> |
Token.privateClone(Text newService)
Create a private clone of a public token.
|
Token<T> |
TokenSelector.selectToken(Text service,
Collection<Token<? extends TokenIdentifier>> tokens) |
Modifier and Type | Method and Description |
---|---|
abstract void |
TokenRenewer.cancel(Token<?> token,
Configuration conf)
Cancel the given token
|
void |
Token.TrivialRenewer.cancel(Token<?> token,
Configuration conf) |
abstract boolean |
TokenRenewer.isManaged(Token<?> token)
Is the given token managed? Only managed tokens may be renewed or
cancelled.
|
boolean |
Token.TrivialRenewer.isManaged(Token<?> token) |
abstract long |
TokenRenewer.renew(Token<?> token,
Configuration conf)
Renew the given token.
|
long |
Token.TrivialRenewer.renew(Token<?> token,
Configuration conf) |
Modifier and Type | Method and Description |
---|---|
Token<T> |
TokenSelector.selectToken(Text service,
Collection<Token<? extends TokenIdentifier>> tokens) |
Constructor and Description |
---|
Token(Token<T> other)
Clone a token.
|
Modifier and Type | Method and Description |
---|---|
TokenIdent |
AbstractDelegationTokenSecretManager.cancelToken(Token<TokenIdent> token,
String canceller)
Cancel a token by removing it from cache.
|
TokenIdent |
AbstractDelegationTokenSecretManager.decodeTokenIdentifier(Token<TokenIdent> token)
Decode the token identifier.
|
long |
AbstractDelegationTokenSecretManager.renewToken(Token<TokenIdent> token,
String renewer)
Renew a delegation token.
|
Modifier and Type | Method and Description |
---|---|
Token<AbstractDelegationTokenIdentifier> |
DelegationTokenAuthenticatedURL.Token.getDelegationToken() |
Token<AbstractDelegationTokenIdentifier> |
DelegationTokenAuthenticator.getDelegationToken(URL url,
org.apache.hadoop.security.authentication.client.AuthenticatedURL.Token token,
String renewer)
Requests a delegation token using the configured
Authenticator
for authentication. |
Token<AbstractDelegationTokenIdentifier> |
DelegationTokenAuthenticator.getDelegationToken(URL url,
org.apache.hadoop.security.authentication.client.AuthenticatedURL.Token token,
String renewer,
String doAsUser)
Requests a delegation token using the configured
Authenticator
for authentication. |
Token<AbstractDelegationTokenIdentifier> |
DelegationTokenAuthenticatedURL.getDelegationToken(URL url,
DelegationTokenAuthenticatedURL.Token token,
String renewer)
Requests a delegation token using the configured
Authenticator
for authentication. |
Token<AbstractDelegationTokenIdentifier> |
DelegationTokenAuthenticatedURL.getDelegationToken(URL url,
DelegationTokenAuthenticatedURL.Token token,
String renewer,
String doAsUser)
Requests a delegation token using the configured
Authenticator
for authentication. |
Modifier and Type | Method and Description |
---|---|
void |
DelegationTokenAuthenticator.cancelDelegationToken(URL url,
org.apache.hadoop.security.authentication.client.AuthenticatedURL.Token token,
Token<AbstractDelegationTokenIdentifier> dToken)
Cancels a delegation token from the server end-point.
|
void |
DelegationTokenAuthenticator.cancelDelegationToken(URL url,
org.apache.hadoop.security.authentication.client.AuthenticatedURL.Token token,
Token<AbstractDelegationTokenIdentifier> dToken,
String doAsUser)
Cancels a delegation token from the server end-point.
|
long |
DelegationTokenAuthenticator.renewDelegationToken(URL url,
org.apache.hadoop.security.authentication.client.AuthenticatedURL.Token token,
Token<AbstractDelegationTokenIdentifier> dToken)
Renews a delegation token from the server end-point using the
configured
Authenticator for authentication. |
long |
DelegationTokenAuthenticator.renewDelegationToken(URL url,
org.apache.hadoop.security.authentication.client.AuthenticatedURL.Token token,
Token<AbstractDelegationTokenIdentifier> dToken,
String doAsUser)
Renews a delegation token from the server end-point using the
configured
Authenticator for authentication. |
void |
DelegationTokenAuthenticatedURL.Token.setDelegationToken(Token<AbstractDelegationTokenIdentifier> delegationToken) |
Copyright © 2017 Apache Software Foundation. All Rights Reserved.