Package | Description |
---|---|
org.springframework.vault.client |
Spring Vault Client abstraction.
|
org.springframework.vault.core |
Vault core support.
|
Modifier and Type | Method and Description |
---|---|
<T,S extends T> |
VaultClient.deleteForEntity(String path,
VaultToken vaultToken,
Class<T> responseType)
Delete a resource by DELETEing from the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.exchange(String pathTemplate,
HttpMethod method,
HttpEntity<?> requestEntity,
Class<T> responseType,
Map<String,?> uriVariables)
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the
response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.exchange(String pathTemplate,
HttpMethod method,
HttpEntity<?> requestEntity,
ParameterizedTypeReference<T> responseType,
Map<String,?> uriVariables)
Execute the HTTP method to the given path template, writing the given request entity to the request, and returns
the response as
VaultResponseEntity . |
<T,S extends T> |
VaultAccessor.exchange(URI uri,
HttpMethod httpMethod,
HttpEntity<?> httpEntity,
Class<T> returnType) |
<T,S extends T> |
VaultAccessor.exchange(URI uri,
HttpMethod httpMethod,
HttpEntity<?> httpEntity,
ParameterizedTypeReference<T> returnType) |
<T,S extends T> |
VaultClient.getForEntity(String path,
Class<T> responseType)
Retrieve a resource by GETting from the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.getForEntity(String path,
VaultToken vaultToken,
Class<T> responseType)
Retrieve a resource by GETting from the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.postForEntity(String path,
Object request,
Class<T> responseType)
Issue a POST request using the given object to the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.postForEntity(String path,
VaultToken vaultToken,
Object request,
Class<T> responseType)
Issue a POST request using the given object to the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.putForEntity(String path,
Object request,
Class<T> responseType)
Create a new resource by PUTting the given object to the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultClient.putForEntity(String path,
VaultToken vaultToken,
Object request,
Class<T> responseType)
Create a new resource by PUTting the given object to the path, and returns the response as
VaultResponseEntity . |
Modifier and Type | Method and Description |
---|---|
<T,S extends T> |
VaultOperations.VaultSession.deleteForEntity(String path,
Class<T> responseType)
Delete a resource by DELETEing from the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultOperations.VaultSession.exchange(String pathTemplate,
HttpMethod method,
HttpEntity<?> requestEntity,
Class<T> responseType,
Map<String,?> uriVariables)
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns
the response as
VaultResponseEntity . |
<T,S extends T> |
VaultOperations.VaultSession.exchange(String pathTemplate,
HttpMethod method,
HttpEntity<?> requestEntity,
ParameterizedTypeReference<T> responseType,
Map<String,?> uriVariables)
Execute the HTTP method to the given path template, writing the given request entity to the request, and returns
the response as
VaultResponseEntity . |
<T,S extends T> |
VaultOperations.VaultSession.getForEntity(String path,
Class<T> responseType)
Retrieve a resource by GETting from the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultOperations.VaultSession.postForEntity(String path,
Object request,
Class<T> responseType)
Issue a POST request using the given object to the path, and returns the response as
VaultResponseEntity . |
<T,S extends T> |
VaultOperations.VaultSession.putForEntity(String path,
Object request,
Class<T> responseType)
Create a new resource by PUTting the given object to the path, and returns the response as
VaultResponseEntity . |
Copyright © 2016 Pivotal Software, Inc.. All rights reserved.