parent
04394a63cd
commit
7ee974445b
|
@ -171,7 +171,7 @@ public final class OidcIdTokenDecoderFactory implements JwtDecoderFactory<Client
|
|||
}
|
||||
return NimbusJwtDecoder.withJwkSetUri(jwkSetUri)
|
||||
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
||||
.restOperations(restOperationsFactory.apply(clientRegistration))
|
||||
.restOperations(this.restOperationsFactory.apply(clientRegistration))
|
||||
.build();
|
||||
}
|
||||
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
||||
|
|
|
@ -168,7 +168,7 @@ public final class ReactiveOidcIdTokenDecoderFactory implements ReactiveJwtDecod
|
|||
}
|
||||
return NimbusReactiveJwtDecoder.withJwkSetUri(jwkSetUri)
|
||||
.jwsAlgorithm((SignatureAlgorithm) jwsAlgorithm)
|
||||
.webClient(webClientFactory.apply(clientRegistration))
|
||||
.webClient(this.webClientFactory.apply(clientRegistration))
|
||||
.build();
|
||||
}
|
||||
if (jwsAlgorithm != null && MacAlgorithm.class.isAssignableFrom(jwsAlgorithm.getClass())) {
|
||||
|
|
Loading…
Reference in New Issue