Fix setJWTClaimSetJWSKeySelector Typo

Closes gh-10504
This commit is contained in:
Jeff Maxwell 2021-11-15 17:36:41 -06:00 committed by Josh Cummings
parent 5913501e1a
commit 879b2d089f
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ Next, we can construct a `JWTProcessor`:
JWTProcessor jwtProcessor(JWTClaimSetJWSKeySelector keySelector) {
ConfigurableJWTProcessor<SecurityContext> jwtProcessor =
new DefaultJWTProcessor();
jwtProcessor.setJWTClaimSetJWSKeySelector(keySelector);
jwtProcessor.setJWTClaimsSetAwareJWSKeySelector(keySelector);
return jwtProcessor;
}
----