diff --git a/CHANGELOG.md b/CHANGELOG.md index e71a4cd..4dd5300 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## 0.7.0 [work in progress] * [feature] Retrieval of health status via `getHealth()` (#15) * [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] * [fix] Prevent potential NPE on SecretResponse getter diff --git a/src/main/java/de/stklcode/jvault/connector/VaultConnector.java b/src/main/java/de/stklcode/jvault/connector/VaultConnector.java index b2351da..7284e31 100644 --- a/src/main/java/de/stklcode/jvault/connector/VaultConnector.java +++ b/src/main/java/de/stklcode/jvault/connector/VaultConnector.java @@ -331,19 +331,6 @@ public interface VaultConnector extends AutoCloseable { */ List 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 listAppRoleSecretss(final String roleName) throws VaultConnectorException { - return listAppRoleSecrets(roleName); - } - /** * List existing (accessible) secret IDs for AppRole role. *