1
0
mirror of synced 2026-08-06 02:08:01 +00:00

Fix jwtDecoder Documentation Usage

Closes gh-10505
This commit is contained in:
Josh Cummings
2021-11-16 15:21:05 -07:00
parent d963a13832
commit 76aff9df62
@@ -1422,9 +1422,9 @@ Now that we have a tenant-aware processor and a tenant-aware validator, we can p
---- ----
@Bean @Bean
JwtDecoder jwtDecoder(JWTProcessor jwtProcessor, OAuth2TokenValidator<Jwt> jwtValidator) { JwtDecoder jwtDecoder(JWTProcessor jwtProcessor, OAuth2TokenValidator<Jwt> jwtValidator) {
NimbusJwtDecoder decoder = new NimbusJwtDecoder(processor); NimbusJwtDecoder decoder = new NimbusJwtDecoder(jwtProcessor);
OAuth2TokenValidator<Jwt> validator = new DelegatingOAuth2TokenValidator<> OAuth2TokenValidator<Jwt> validator = new DelegatingOAuth2TokenValidator<>
(JwtValidators.createDefault(), this.jwtValidator); (JwtValidators.createDefault(), jwtValidator);
decoder.setJwtValidator(validator); decoder.setJwtValidator(validator);
return decoder; return decoder;
} }