Skip to content

Commit 7b759a2

Browse files
committed
Added a constant for DPOP in OAuth2AccessToken.TokenType
Issue gh-14915
1 parent 346d479 commit 7b759a2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ public static final class TokenType implements Serializable {
102102
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
103103

104104
public static final TokenType BEARER = new TokenType("Bearer");
105+
public static final TokenType DPOP = new TokenType("DPoP");
105106

106107
private final String value;
107108

0 commit comments

Comments
 (0)