Skip to content

Commit

Permalink
Added a constant for DPOP in OAuth2AccessToken.TokenType
Browse files Browse the repository at this point in the history
Issue gh-14915
  • Loading branch information
ThomasKasene authored and sjohnr committed Dec 18, 2024
1 parent 3eeb431 commit 9404aaf
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ public static final class TokenType implements Serializable {

public static final TokenType BEARER = new TokenType("Bearer");

public static final TokenType DPOP = new TokenType("DPoP");

private final String value;

private TokenType(String value) {
Expand Down

0 comments on commit 9404aaf

Please sign in to comment.