Added a constant for DPOP in OAuth2AccessToken.TokenType

Issue gh-14915
This commit is contained in:
ThomasKasene 2024-11-13 16:30:18 +01:00 committed by Steve Riesenberg
parent 3eeb4317f6
commit 9404aaf010
No known key found for this signature in database
GPG Key ID: 3D0169B18AB8F0A9
1 changed files with 2 additions and 0 deletions

View File

@ -107,6 +107,8 @@ public class OAuth2AccessToken extends AbstractOAuth2Token {
public static final TokenType BEARER = new TokenType("Bearer");
public static final TokenType DPOP = new TokenType("DPoP");
private final String value;
private TokenType(String value) {