Skip to content

Commit 9404aaf

Browse files
ThomasKasenesjohnr
authored andcommitted
Added a constant for DPOP in OAuth2AccessToken.TokenType
Issue gh-14915
1 parent 3eeb431 commit 9404aaf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/OAuth2AccessToken.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ public static final class TokenType implements Serializable {
107107

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

110+
public static final TokenType DPOP = new TokenType("DPoP");
111+
110112
private final String value;
111113

112114
private TokenType(String value) {

0 commit comments

Comments
 (0)