Skip to content

Commit da13eaf

Browse files
committed
fix Javadocs without descriptions in WolfSSLAuthStore, prevent warnings on newer JDKs
1 parent 1e0bf44 commit da13eaf

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/java/com/wolfssl/provider/jsse/WolfSSLAuthStore.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public class WolfSSLAuthStore {
6363
private WolfSSLSessionContext clientCtx = null;
6464

6565
/**
66+
* Protected constructor to create new WolfSSLAuthStore
6667
* @param keyman key manager to use
6768
* @param trustman trust manager to use
6869
* @param random secure random
@@ -189,41 +190,47 @@ private void initSecureRandom(SecureRandom random) {
189190

190191

191192
/**
193+
* Get X509KeyManager for this object
192194
* @return get the key manager used
193195
*/
194196
protected X509KeyManager getX509KeyManager() {
195197
return this.km;
196198
}
197199

198200
/**
201+
* Get X509TrustManager for this object
199202
* @return get the trust manager used
200203
*/
201204
protected X509TrustManager getX509TrustManager() {
202205
return this.tm;
203206
}
204207

205208
/**
209+
* Get the SecureRandom for this object
206210
* @return get secure random
207211
*/
208212
protected SecureRandom getSecureRandom() {
209213
return this.sr;
210214
}
211215

212216
/**
217+
* Get protocol version set
213218
* @return get the current protocol version set
214219
*/
215220
protected TLS_VERSION getProtocolVersion() {
216221
return this.currentVersion;
217222
}
218223

219224
/**
225+
* Set certificate alias
220226
* @param in alias to set for certificate used
221227
*/
222228
protected void setCertAlias(String in) {
223229
this.alias = in;
224230
}
225231

226232
/**
233+
* Get certificate alias
227234
* @return alias name
228235
*/
229236
protected String getCertAlias() {

0 commit comments

Comments
 (0)