You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/bettercloud/vault/SslConfig.java
+21-22Lines changed: 21 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@
37
37
* <p>A container for SSL-related configuration options, meant to be stored within a {@link VaultConfig} instance.</p>
38
38
*
39
39
* <p>Construct instances of this class using a builder pattern, calling setter methods for each value and then
40
-
* terminating with a call to {@link this#build()}:</p>
40
+
* terminating with a call to build().</p>
41
41
*/
42
42
publicclassSslConfigimplementsSerializable {
43
43
@@ -67,7 +67,7 @@ public class SslConfig implements Serializable {
67
67
* <code>protected</code> access level).</p>
68
68
*
69
69
* @param environmentLoader An environment variable loader implementation (presumably a mock)
70
-
* @return This object, with environmentLoader populated, ready for additional builder-pattern method calls or else finalization with the {@link this#build()} method
70
+
* @return This object, with environmentLoader populated, ready for additional builder-pattern method calls or else finalization with the build() method
@@ -101,7 +101,7 @@ public SslConfig verify(final Boolean verify) {
101
101
* If you are not using certificate based client auth, then this field may remain un-set.</p>
102
102
*
103
103
* <p>Note that you cannot mix-and-match JKS based config with PEM based config. If any of the keyStore or
104
-
* trustStore setters are used, then the {@link this#build()} method will complete ignore any PEM data that was
104
+
* trustStore setters are used, then the build() method will complete ignore any PEM data that was
105
105
* set.</p>
106
106
*
107
107
* @param keyStore A keystore, containing a client certificate registered with Vault's TLS Certificate auth backend
@@ -120,13 +120,13 @@ public SslConfig keyStore(final KeyStore keyStore, final String password) {
120
120
* keystore from a JKS file on the filesystem.</p>
121
121
*
122
122
* <p>Note that you cannot mix-and-match JKS based config with PEM based config. If any of the keyStore or
123
-
* trustStore setters are used, then the {@link this#build()} method will complete ignore any PEM data that was
123
+
* trustStore setters are used, then the build() method will complete ignore any PEM data that was
124
124
* set.</p>
125
125
*
126
126
* @param keyStoreFile A JKS keystore file, containing a client certificate registered with Vault's TLS Certificate auth backend
127
127
* @param password The password needed to access the keystore (can be <code>null</code>)
128
128
* @return This object, with keyStore and keyStorePassword populated, ready for additional builder-pattern method calls or else finalization with the build() method
129
-
* @throws VaultException
129
+
* @throws VaultException If any error occurs while loading the keystore
@@ -145,13 +145,13 @@ public SslConfig keyStoreFile(final File keyStoreFile, final String password) th
145
145
* JAR/WAR/EAR file).</p>
146
146
*
147
147
* <p>Note that you cannot mix-and-match JKS based config with PEM based config. If any of the keyStore or
148
-
* trustStore setters are used, then the {@link this#build()} method will complete ignore any PEM data that was
148
+
* trustStore setters are used, then the build() method will complete ignore any PEM data that was
149
149
* set.</p>
150
150
*
151
151
* @param classpathResource A JKS keystore file, containing a client certificate registered with Vault's TLS Certificate auth backend
152
152
* @param password The password needed to access the keystore (can be <code>null</code>)
153
153
* @return This object, with keyStore and keyStorePassword populated, ready for additional builder-pattern method calls or else finalization with the build() method
154
-
* @throws VaultException
154
+
* @throws VaultException If any error occurs while loading the keystore
Copy file name to clipboardExpand all lines: src/main/java/com/bettercloud/vault/VaultConfig.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
* <p>A container for the configuration settings needed to initialize a <code>Vault</code> driver instance.</p>
9
9
*
10
10
* <p>Construct instances of this class using a builder pattern, calling setter methods for each value and then
11
-
* terminating with a call to {@link this#build()}:</p>
11
+
* terminating with a call to build():</p>
12
12
*
13
13
* <blockquote>
14
14
* <pre>{@code
@@ -49,7 +49,7 @@ public class VaultConfig implements Serializable {
49
49
* <code>protected</code> access level).</p>
50
50
*
51
51
* @param environmentLoader An environment variable loader implementation (presumably a mock)
52
-
* @return This object, with environmentLoader populated, ready for additional builder-pattern method calls or else finalization with the {@link this#build()} method
52
+
* @return This object, with environmentLoader populated, ready for additional builder-pattern method calls or else finalization with the build() method
0 commit comments