Skip to content

Commit a1de957

Browse files
Change javadocs
1 parent aa0030e commit a1de957

File tree

2 files changed

+10
-19
lines changed

2 files changed

+10
-19
lines changed

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/introspection/SpringOpaqueTokenIntrospector.java

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,7 @@ private Builder(String introspectionUri) {
330330
}
331331

332332
/**
333-
* Creates a {@code SpringOpaqueTokenIntrospector.Builder} with the provided
334-
* parameters
333+
* Use the given parameters to build {@code SpringOpaqueTokenIntrospector}
335334
* @param clientId The client id authorized that should be encoded
336335
* @param charset The charset to use
337336
* @return the {@link SpringOpaqueTokenIntrospector.Builder}
@@ -345,8 +344,7 @@ public Builder clientId(String clientId, Charset charset) {
345344
}
346345

347346
/**
348-
* Creates a {@code SpringOpaqueTokenIntrospector.Builder} with the provided
349-
* parameters
347+
* Use the given parameter to build {@code SpringOpaqueTokenIntrospector}
350348
* @param clientId The client id authorized
351349
* @return the {@link SpringOpaqueTokenIntrospector.Builder}
352350
* @since 6.5
@@ -358,8 +356,7 @@ public Builder clientId(String clientId) {
358356
}
359357

360358
/**
361-
* Creates a {@code SpringOpaqueTokenIntrospector.Builder} with the provided
362-
* parameters
359+
* Use the given parameters to build {@code SpringOpaqueTokenIntrospector}
363360
* @param clientSecret The client id authorized
364361
* @param charset The charset to use
365362
* @return the {@link SpringOpaqueTokenIntrospector.Builder}
@@ -373,8 +370,7 @@ public Builder clientSecret(String clientSecret, Charset charset) {
373370
}
374371

375372
/**
376-
* Creates a {@code SpringOpaqueTokenIntrospector.Builder} with the provided
377-
* parameters
373+
* Use the given parameter to build {@code SpringOpaqueTokenIntrospector}
378374
* @param clientSecret The client id authorized
379375
* @return the {@link SpringOpaqueTokenIntrospector.Builder}
380376
* @since 6.5
@@ -386,7 +382,7 @@ public Builder clientSecret(String clientSecret) {
386382
}
387383

388384
/**
389-
* Creates a {@code SpringOpaqueTokenIntrospector} with the provided parameters
385+
* Creates a {@code SpringOpaqueTokenIntrospector}
390386
* @return the {@link SpringOpaqueTokenIntrospector}
391387
* @since 6.5
392388
*/

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/introspection/SpringReactiveOpaqueTokenIntrospector.java

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,7 @@ private Builder(String introspectionUri) {
284284
}
285285

286286
/**
287-
* Creates a {@code SpringReactiveOpaqueTokenIntrospector.Builder} with the
288-
* provided parameters
287+
* Use the given parameters to build {@code SpringOpaqueTokenIntrospector}
289288
* @param clientId The client id authorized that should be encoded
290289
* @param charset The charset to use
291290
* @return the {@link SpringReactiveOpaqueTokenIntrospector.Builder}
@@ -299,8 +298,7 @@ public Builder clientId(String clientId, Charset charset) {
299298
}
300299

301300
/**
302-
* Creates a {@code SpringReactiveOpaqueTokenIntrospector.Builder} with the
303-
* provided parameters
301+
* Use the given parameter to build {@code SpringOpaqueTokenIntrospector}
304302
* @param clientId The client id authorized
305303
* @return the {@link SpringReactiveOpaqueTokenIntrospector.Builder}
306304
* @since 6.5
@@ -312,8 +310,7 @@ public Builder clientId(String clientId) {
312310
}
313311

314312
/**
315-
* Creates a {@code SpringReactiveOpaqueTokenIntrospector.Builder} with the
316-
* provided parameters
313+
* Use the given parameters to build {@code SpringOpaqueTokenIntrospector}
317314
* @param clientSecret The client id authorized that should be encoded
318315
* @param charset The charset to use
319316
* @return the {@link SpringReactiveOpaqueTokenIntrospector.Builder}
@@ -327,8 +324,7 @@ public Builder clientSecret(String clientSecret, Charset charset) {
327324
}
328325

329326
/**
330-
* Creates a {@code SpringReactiveOpaqueTokenIntrospector.Builder} with the
331-
* provided parameters
327+
* Use the given parameter to build {@code SpringOpaqueTokenIntrospector}
332328
* @param clientSecret The client id authorized
333329
* @return the {@link SpringReactiveOpaqueTokenIntrospector.Builder}
334330
* @since 6.5
@@ -340,8 +336,7 @@ public Builder clientSecret(String clientSecret) {
340336
}
341337

342338
/**
343-
* Creates a {@code SpringReactiveOpaqueTokenIntrospector} with the provided
344-
* parameters
339+
* Creates a {@code SpringReactiveOpaqueTokenIntrospector}
345340
* @return the {@link SpringReactiveOpaqueTokenIntrospector}
346341
* @since 6.5
347342
*/

0 commit comments

Comments
 (0)