Skip to content

Commit 7bca17c

Browse files
ngocnhan-tran1996jzheaux
authored andcommitted
Polish
Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 37b8d01 commit 7bca17c

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -65,8 +65,8 @@ public void commence(HttpServletRequest request, HttpServletResponse response,
6565
if (this.realmName != null) {
6666
parameters.put("realm", this.realmName);
6767
}
68-
if (authException instanceof OAuth2AuthenticationException) {
69-
OAuth2Error error = ((OAuth2AuthenticationException) authException).getError();
68+
if (authException instanceof OAuth2AuthenticationException oAuth2AuthenticationException) {
69+
OAuth2Error error = oAuth2AuthenticationException.getError();
7070
parameters.put("error", error.getErrorCode());
7171
if (StringUtils.hasText(error.getDescription())) {
7272
parameters.put("error_description", error.getDescription());
@@ -78,7 +78,7 @@ public void commence(HttpServletRequest request, HttpServletResponse response,
7878
if (StringUtils.hasText(bearerTokenError.getScope())) {
7979
parameters.put("scope", bearerTokenError.getScope());
8080
}
81-
status = ((BearerTokenError) error).getHttpStatus();
81+
status = bearerTokenError.getHttpStatus();
8282
}
8383
}
8484
String wwwAuthenticate = computeWWWAuthenticateHeaderValue(parameters);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@ public String resolve(final HttpServletRequest request) {
6464
return authorizationHeaderToken;
6565
}
6666
if (parameterToken != null && isParameterTokenEnabledForRequest(request)) {
67-
if (!StringUtils.hasText(parameterToken)) {
67+
if (parameterToken.isBlank()) {
6868
BearerTokenError error = BearerTokenErrors
6969
.invalidRequest("The requested token parameter is an empty string");
7070
throw new OAuth2AuthenticationException(error);

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

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -73,29 +73,28 @@ private Map<String, String> createParameters(AuthenticationException authExcepti
7373
if (this.realmName != null) {
7474
parameters.put("realm", this.realmName);
7575
}
76-
if (authException instanceof OAuth2AuthenticationException) {
77-
OAuth2Error error = ((OAuth2AuthenticationException) authException).getError();
76+
if (authException instanceof OAuth2AuthenticationException oAuth2AuthenticationException) {
77+
OAuth2Error error = oAuth2AuthenticationException.getError();
7878
parameters.put("error", error.getErrorCode());
7979
if (StringUtils.hasText(error.getDescription())) {
8080
parameters.put("error_description", error.getDescription());
8181
}
8282
if (StringUtils.hasText(error.getUri())) {
8383
parameters.put("error_uri", error.getUri());
8484
}
85-
if (error instanceof BearerTokenError bearerTokenError) {
86-
if (StringUtils.hasText(bearerTokenError.getScope())) {
87-
parameters.put("scope", bearerTokenError.getScope());
88-
}
85+
if (error instanceof BearerTokenError bearerTokenError
86+
&& StringUtils.hasText(bearerTokenError.getScope())) {
87+
parameters.put("scope", bearerTokenError.getScope());
8988
}
9089
}
9190
return parameters;
9291
}
9392

9493
private HttpStatus getStatus(AuthenticationException authException) {
95-
if (authException instanceof OAuth2AuthenticationException) {
96-
OAuth2Error error = ((OAuth2AuthenticationException) authException).getError();
97-
if (error instanceof BearerTokenError) {
98-
return ((BearerTokenError) error).getHttpStatus();
94+
if (authException instanceof OAuth2AuthenticationException oAuth2AuthenticationException) {
95+
OAuth2Error error = oAuth2AuthenticationException.getError();
96+
if (error instanceof BearerTokenError bearerTokenError) {
97+
return bearerTokenError.getHttpStatus();
9998
}
10099
}
101100
return HttpStatus.UNAUTHORIZED;

0 commit comments

Comments
 (0)