Add missing parameters to JavaDoc [skip ci]

This commit is contained in:
Stefan Kalscheuer 2019-03-22 15:01:21 +01:00
parent dee7ec0b23
commit eabc458176
2 changed files with 8 additions and 2 deletions

View File

@ -535,6 +535,8 @@ public interface VaultConnector extends AutoCloseable, Serializable {
* Prefix "secret/metadata" is automatically added to key. Only available for KV v2 secrets. * Prefix "secret/metadata" is automatically added to key. Only available for KV v2 secrets.
* *
* @param key Secret identifier * @param key Secret identifier
* @param maxVersions Maximum number of versions (fallback to backend default if {@code null})
* @param casRequired Specify if Check-And-Set is required for this secret.
* @throws VaultConnectorException on error * @throws VaultConnectorException on error
* @since 0.8 * @since 0.8
*/ */

View File

@ -103,6 +103,7 @@ public final class RequestHelper implements Serializable {
* @param payload Map of payload values (will be converted to JSON). * @param payload Map of payload values (will be converted to JSON).
* @param token Vault token (may be {@code null}). * @param token Vault token (may be {@code null}).
* @param target Target class. * @param target Target class.
* @param <T> Target type.
* @return HTTP response * @return HTTP response
* @throws VaultConnectorException on connection error * @throws VaultConnectorException on connection error
* @since 0.8 * @since 0.8
@ -120,8 +121,9 @@ public final class RequestHelper implements Serializable {
/** /**
* Execute HTTP request using POST method and expect empty (204) response. * Execute HTTP request using POST method and expect empty (204) response.
* *
* @param path URL path (relative to base). * @param path URL path (relative to base).
* @param token Vault token (may be {@code null}). * @param payload Map of payload values (will be converted to JSON).
* @param token Vault token (may be {@code null}).
* @throws VaultConnectorException on connection error * @throws VaultConnectorException on connection error
* @since 0.8 * @since 0.8
*/ */
@ -171,6 +173,7 @@ public final class RequestHelper implements Serializable {
* @param payload Map of payload values (will be converted to JSON). * @param payload Map of payload values (will be converted to JSON).
* @param token Vault token (may be {@code null}). * @param token Vault token (may be {@code null}).
* @param target Target class. * @param target Target class.
* @param <T> Target type.
* @return HTTP response * @return HTTP response
* @throws VaultConnectorException on connection error * @throws VaultConnectorException on connection error
* @since 0.8 * @since 0.8
@ -276,6 +279,7 @@ public final class RequestHelper implements Serializable {
* @param payload Map of payload values (will be converted to JSON). * @param payload Map of payload values (will be converted to JSON).
* @param token Vault token (may be {@code null}). * @param token Vault token (may be {@code null}).
* @param target Target class. * @param target Target class.
* @param <T> Target type.
* @return HTTP response * @return HTTP response
* @throws VaultConnectorException on connection error * @throws VaultConnectorException on connection error
* @since 0.8 * @since 0.8