Package | Description |
---|---|
org.springframework.vault.authentication |
Support for authentication and session management.
|
org.springframework.vault.client |
Spring Vault Client abstraction.
|
org.springframework.vault.core |
Vault core support.
|
org.springframework.vault.support |
Classes supporting the Vault packages, such as value objects.
|
Modifier and Type | Class and Description |
---|---|
class |
LoginToken
Value object for a Vault token obtained by a login method.
|
Modifier and Type | Method and Description |
---|---|
VaultToken |
CubbyholeAuthenticationOptions.getInitialToken() |
VaultToken |
SimpleSessionManager.getSessionToken() |
VaultToken |
SessionManager.getSessionToken()
Obtain a session token.
|
VaultToken |
LifecycleAwareSessionManager.getSessionToken() |
VaultToken |
TokenAuthentication.login() |
protected VaultToken |
LifecycleAwareSessionManager.login() |
VaultToken |
CubbyholeAuthentication.login() |
VaultToken |
ClientCertificateAuthentication.login() |
VaultToken |
ClientAuthentication.login()
Return a
VaultToken . |
VaultToken |
AwsIamAuthentication.login() |
VaultToken |
AwsEc2Authentication.login() |
VaultToken |
AuthenticationStepsExecutor.login() |
VaultToken |
AppRoleAuthentication.login() |
VaultToken |
AppIdAuthentication.login() |
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<VaultToken> |
VaultTokenSupplier.getVaultToken()
Return a
VaultToken . |
reactor.core.publisher.Mono<VaultToken> |
CachingVaultTokenSupplier.getVaultToken() |
reactor.core.publisher.Mono<VaultToken> |
AuthenticationStepsOperator.getVaultToken() |
Modifier and Type | Method and Description |
---|---|
static AuthenticationSteps |
TokenAuthentication.createAuthenticationSteps(VaultToken token)
Creates a
AuthenticationSteps for token authentication given
VaultToken . |
CubbyholeAuthenticationOptions.CubbyholeAuthenticationOptionsBuilder |
CubbyholeAuthenticationOptions.CubbyholeAuthenticationOptionsBuilder.initialToken(VaultToken initialToken)
Configure the initial
VaultToken to access Cubbyhole. |
static AuthenticationSteps |
AuthenticationSteps.just(VaultToken token)
Create a flow definition using a provided
VaultToken . |
Modifier and Type | Method and Description |
---|---|
AuthenticationSteps |
AuthenticationSteps.Node.login(Function<? super T,? extends VaultToken> mappingFunction)
|
Constructor and Description |
---|
TokenAuthentication(VaultToken token)
Create a new
TokenAuthentication with a static token . |
Modifier and Type | Method and Description |
---|---|
static HttpHeaders |
VaultHttpHeaders.from(VaultToken vaultToken)
Create
HttpHeaders given VaultToken . |
Modifier and Type | Method and Description |
---|---|
VaultTokenResponse |
VaultTokenTemplate.renew(VaultToken vaultToken) |
VaultTokenResponse |
VaultTokenOperations.renew(VaultToken vaultToken)
Renew a
VaultToken . |
void |
VaultTokenTemplate.revoke(VaultToken vaultToken) |
void |
VaultTokenOperations.revoke(VaultToken vaultToken)
Revoke a
VaultToken . |
void |
VaultTokenTemplate.revokeOrphan(VaultToken vaultToken) |
void |
VaultTokenOperations.revokeOrphan(VaultToken vaultToken)
Revoke a
VaultToken but not its child tokens. |
Modifier and Type | Method and Description |
---|---|
VaultToken |
VaultInitializationResponse.getRootToken() |
VaultToken |
VaultTokenResponse.getToken()
Return a
VaultToken from the VaultResponse . |
static VaultToken |
VaultToken.of(char[] token)
Create a new
VaultToken . |
static VaultToken |
VaultToken.of(String token)
Create a new
VaultToken . |
Copyright © 2016–2017 Pivotal Software, Inc.. All rights reserved.