Skip to content

Commit

Permalink
Minor JavaDoc corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
stklcode committed Dec 24, 2016
1 parent e988833 commit 17145e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ public HTTPVaultConnector(String baseURL) {
/**
* Create connector using full URL and trusted certificate.
*
* @param baseURL The URL
* @param baseURL The URL
* @param sslContext Custom SSL Context
*/
public HTTPVaultConnector(String baseURL, SSLContext sslContext) {
this.baseURL = baseURL;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ default boolean registerAppUserId(final String appID, final String policy, final
*
* @param leaseID the lase ID
* @return Renewed lease
* @throws VaultConnectorException on error
*/
default SecretResponse renew(final String leaseID) throws VaultConnectorException {
return renew(leaseID, null);
Expand All @@ -416,6 +417,7 @@ default SecretResponse renew(final String leaseID) throws VaultConnectorExceptio
* @param leaseID the lase ID
* @param increment number of seconds to extend lease time
* @return Renewed lease
* @throws VaultConnectorException on error
*/
SecretResponse renew(final String leaseID, final Integer increment) throws VaultConnectorException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ public HTTPVaultConnectorFactory withPrefix(String prefix) {
*
* @param cert path to certificate file
* @return self
* @throws VaultConnectorException on error
* @since 0.4.0
*/
public HTTPVaultConnectorFactory withTrustedCA(Path cert) throws VaultConnectorException {
Expand Down

0 comments on commit 17145e5

Please sign in to comment.