Allow OIDCIdentityProvider implementations to override isTokenTypeSupported
Fixes #34695 Signed-off-by: Thomas Darimont <thomas.darimont@googlemail.com>
This commit is contained in:
parent
d2e19da64e
commit
fec661cf10
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
return SUPPORTED_TOKEN_TYPES.contains(parsedToken.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue