Skip to content

Commit 50adb6a

Browse files
eddumelendezjzheaux
authored andcommitted
Fix javadoc
1 parent e88c5c0 commit 50adb6a

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

config/src/main/java/org/springframework/security/config/web/server/ServerHttpSecurity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2223,7 +2223,7 @@ public ServerHttpSecurity authenticationManager(ReactiveAuthenticationManager ma
22232223

22242224
/**
22252225
* Builds the {@link SecurityWebFilterChain}
2226-
* @return the {@link SecurityWebFilterChain
2226+
* @return the {@link SecurityWebFilterChain}
22272227
*/
22282228
public SecurityWebFilterChain build() {
22292229
if (this.built != null) {

oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/JwtTimestampValidator.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@
2424
import org.springframework.security.oauth2.core.OAuth2ErrorCodes;
2525
import org.springframework.security.oauth2.core.OAuth2TokenValidator;
2626
import org.springframework.security.oauth2.core.OAuth2TokenValidatorResult;
27-
import org.springframework.security.oauth2.jwt.Jwt;
2827
import org.springframework.util.Assert;
2928

3029
/**
31-
* An implementation of {@see OAuth2TokenValidator} for verifying claims in a Jwt-based access token
30+
* An implementation of {@link OAuth2TokenValidator} for verifying claims in a Jwt-based access token
3231
*
3332
* <p>
3433
* Because clocks can differ between the Jwt source, say the Authorization Server, and its destination, say the

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/JwtAuthenticationProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* <p>
4242
* <p>
4343
* This {@link AuthenticationProvider} is responsible for decoding and verifying a {@link Jwt}-encoded access token,
44-
* returning its claims set as part of the {@see Authentication} statement.
44+
* returning its claims set as part of the {@link Authentication} statement.
4545
* <p>
4646
* <p>
4747
* Scopes are translated into {@link GrantedAuthority}s according to the following algorithm:

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/OAuth2IntrospectionAuthenticationProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* to check the token's validity and reveal its attributes.
5252
* <p>
5353
* This {@link AuthenticationProvider} is responsible for introspecting and verifying an opaque access token,
54-
* returning its attributes set as part of the {@see Authentication} statement.
54+
* returning its attributes set as part of the {@link Authentication} statement.
5555
* <p>
5656
* Scopes are translated into {@link GrantedAuthority}s according to the following algorithm:
5757
* <ol>

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/OAuth2IntrospectionReactiveAuthenticationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* to check the token's validity and reveal its attributes.
5353
* <p>
5454
* This {@link ReactiveAuthenticationManager} is responsible for introspecting and verifying an opaque access token,
55-
* returning its attributes set as part of the {@see Authentication} statement.
55+
* returning its attributes set as part of the {@link Authentication} statement.
5656
* <p>
5757
* Scopes are translated into {@link GrantedAuthority}s according to the following algorithm:
5858
* <ol>

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/web/BearerTokenAuthenticationEntryPoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public final class BearerTokenAuthenticationEntryPoint implements Authentication
5252

5353
/**
5454
* Collect error details from the provided parameters and format according to
55-
* RFC 6750, specifically {@code error}, {@code error_description}, {@code error_uri}, and {@scope scope}.
55+
* RFC 6750, specifically {@code error}, {@code error_description}, {@code error_uri}, and {@code scope}.
5656
*
5757
* @param request that resulted in an <code>AuthenticationException</code>
5858
* @param response so that the user agent can begin authentication

oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/web/access/BearerTokenAccessDeniedHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public final class BearerTokenAccessDeniedHandler implements AccessDeniedHandler
4949

5050
/**
5151
* Collect error details from the provided parameters and format according to
52-
* RFC 6750, specifically {@code error}, {@code error_description}, {@code error_uri}, and {@scope scope}.
52+
* RFC 6750, specifically {@code error}, {@code error_description}, {@code error_uri}, and {@code scope}.
5353
*
5454
* @param request that resulted in an <code>AccessDeniedException</code>
5555
* @param response so that the user agent can be advised of the failure

web/src/main/java/org/springframework/security/web/header/writers/HstsHeaderWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public void setIncludeSubDomains(boolean includeSubDomains) {
238238
*
239239
* @param preload true to include preload, else false
240240
* @since 5.2.0
241-
* @autor Ankur Pathak
241+
* @author Ankur Pathak
242242
*/
243243
public void setPreload(boolean preload) {
244244
this.preload = preload;

0 commit comments

Comments
 (0)