Package | Description |
---|---|
org.springframework.vault.core |
Vault core support.
|
org.springframework.vault.support |
Classes supporting the Vault packages, such as value objects.
|
Modifier and Type | Method and Description |
---|---|
default Versioned<Map<String,Object>> |
VaultVersionedKeyValueOperations.get(String path)
Read the most recent secret at
path . |
default <T> Versioned<T> |
VaultVersionedKeyValueOperations.get(String path,
Class<T> responseType)
Read the most recent secret at
path and deserialize the secret to the given
responseType . |
Versioned<Map<String,Object>> |
VaultVersionedKeyValueTemplate.get(String path,
Versioned.Version version) |
<T> Versioned<T> |
VaultVersionedKeyValueOperations.get(String path,
Versioned.Version version)
Read the requested
Versioned.Version of the secret at path . |
<T> Versioned<T> |
VaultVersionedKeyValueTemplate.get(String path,
Versioned.Version version,
Class<T> responseType) |
<T> Versioned<T> |
VaultVersionedKeyValueOperations.get(String path,
Versioned.Version version,
Class<T> responseType)
Read the requested
Versioned.Version of the secret at path and deserialize
the secret to the given responseType . |
Modifier and Type | Method and Description |
---|---|
static <T> Versioned<T> |
Versioned.create(T secret)
Create a
unversioned given secret. |
static <T> Versioned<T> |
Versioned.create(T secret,
Versioned.Metadata metadata)
Create a versioned secret object given
secret and Versioned.Metadata . |
static <T> Versioned<T> |
Versioned.create(T secret,
Versioned.Version version)
Create a versioned secret object given
secret and Versioned.Version . |
Copyright © 2016–2019 Pivotal Software, Inc.. All rights reserved.