Browse Source

Merge branch '6.0.x'

pull/12489/head
Josh Cummings 3 years ago
parent
commit
cb18e34b76
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
  1. 2
      docs/modules/ROOT/pages/servlet/oauth2/resource-server/multitenancy.adoc

2
docs/modules/ROOT/pages/servlet/oauth2/resource-server/multitenancy.adoc

@ -418,7 +418,7 @@ Now that we have a tenant-aware processor and a tenant-aware validator, we can p @@ -418,7 +418,7 @@ Now that we have a tenant-aware processor and a tenant-aware validator, we can p
JwtDecoder jwtDecoder(JWTProcessor jwtProcessor, OAuth2TokenValidator<Jwt> jwtValidator) {
NimbusJwtDecoder decoder = new NimbusJwtDecoder(processor);
OAuth2TokenValidator<Jwt> validator = new DelegatingOAuth2TokenValidator<>
(JwtValidators.createDefault(), this.jwtValidator);
(JwtValidators.createDefault(), jwtValidator);
decoder.setJwtValidator(validator);
return decoder;
}

Loading…
Cancel
Save