Removed deprecated method listAppRoleSecretss (#14)
Has been deprecated because of a typo in the method name in v0.6.2. As of 0.7 it is now removed. Please use listAppRoleSecrets() instead.
This commit is contained in:
parent
a1784245a3
commit
51e505313a
@ -1,6 +1,7 @@
|
|||||||
## 0.7.0 [work in progress]
|
## 0.7.0 [work in progress]
|
||||||
* [feature] Retrieval of health status via `getHealth()` (#15)
|
* [feature] Retrieval of health status via `getHealth()` (#15)
|
||||||
* [improvement] `seal()`, `unseal()` are now `void` and throw Exception on error (#12)
|
* [improvement] `seal()`, `unseal()` are now `void` and throw Exception on error (#12)
|
||||||
|
* [deletion] Removed deprecated `listAppRoleSecretss()` (use `listAppRoleSecrets()`) (#14)
|
||||||
|
|
||||||
## 0.6.2 [2017-08-19]
|
## 0.6.2 [2017-08-19]
|
||||||
* [fix] Prevent potential NPE on SecretResponse getter
|
* [fix] Prevent potential NPE on SecretResponse getter
|
||||||
|
@ -331,19 +331,6 @@ public interface VaultConnector extends AutoCloseable {
|
|||||||
*/
|
*/
|
||||||
List<String> listAppRoles() throws VaultConnectorException;
|
List<String> listAppRoles() throws VaultConnectorException;
|
||||||
|
|
||||||
/**
|
|
||||||
* List existing (accessible) secret IDs for AppRole role.
|
|
||||||
*
|
|
||||||
* @param roleName The role name
|
|
||||||
* @return List of roles
|
|
||||||
* @throws VaultConnectorException on error
|
|
||||||
* @deprecated Use {@link #listAppRoleSecrets(String)}}. Will be removed in 0.7.0!
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
default List<String> listAppRoleSecretss(final String roleName) throws VaultConnectorException {
|
|
||||||
return listAppRoleSecrets(roleName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List existing (accessible) secret IDs for AppRole role.
|
* List existing (accessible) secret IDs for AppRole role.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user