Allow OIDCIdentityProvider implementations to override isTokenTypeSupported

Fixes #34695

Signed-off-by: Thomas Darimont <thomas.darimont@googlemail.com>
This commit is contained in:
Thomas Darimont 2024-11-06 12:22:07 +01:00 committed by Marek Posolda
parent d2e19da64e
commit fec661cf10

View file

@ -892,7 +892,7 @@ public class OIDCIdentityProvider extends AbstractOAuth2IdentityProvider<OIDCIde
}
protected static boolean isTokenTypeSupported(JsonWebToken parsedToken) {
protected boolean isTokenTypeSupported(JsonWebToken parsedToken) {
return SUPPORTED_TOKEN_TYPES.contains(parsedToken.getType());
}