mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-13 13:53:29 +00:00
Update Checkstyle
Issue gh-14178
This commit is contained in:
parent
04394a63cd
commit
7ee974445b
@ -171,7 +171,7 @@ public final class OidcIdTokenDecoderFactory implements JwtDecoderFactory<Client
|
|||||||
}
|
}
|
||||||
return NimbusJwtDecoder.withJwkSetUri(jwkSetUri)
|
return NimbusJwtDecoder.withJwkSetUri(jwkSetUri)
|
||||||
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
||||||
.restOperations(restOperationsFactory.apply(clientRegistration))
|
.restOperations(this.restOperationsFactory.apply(clientRegistration))
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
||||||
|
@ -168,7 +168,7 @@ public final class ReactiveOidcIdTokenDecoderFactory implements ReactiveJwtDecod
|
|||||||
}
|
}
|
||||||
return NimbusReactiveJwtDecoder.withJwkSetUri(jwkSetUri)
|
return NimbusReactiveJwtDecoder.withJwkSetUri(jwkSetUri)
|
||||||
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
||||||
.webClient(webClientFactory.apply(clientRegistration))
|
.webClient(this.webClientFactory.apply(clientRegistration))
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user