Skip to content

Commit d683eae

Browse files
ThomasKasenekwondh5217
authored andcommitted
Added a constant for DPOP in OAuth2AccessToken.TokenType
Issue spring-projectsgh-14915 Signed-off-by: Daeho Kwon <[email protected]>
1 parent 831ac13 commit d683eae

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

+2
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)