You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2ParameterNames.java
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2019 the original author or authors.
2
+
* Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -18,7 +18,8 @@
18
18
19
19
/**
20
20
* Standard and custom (non-standard) parameter names defined in the OAuth Parameters
21
-
* Registry and used by the authorization endpoint and token endpoint.
21
+
* Registry and used by the authorization endpoint, token endpoint and
22
+
* token revocation endpoint.
22
23
*
23
24
* @author Joe Grandja
24
25
* @since 5.0
@@ -119,4 +120,16 @@ public interface OAuth2ParameterNames {
119
120
*/
120
121
StringREGISTRATION_ID = "registration_id";
121
122
123
+
/**
124
+
* {@code token} - used in Token Revocation Request.
125
+
* @since 5.5
126
+
*/
127
+
StringTOKEN = "token";
128
+
129
+
/**
130
+
* {@code token_type_hint} - used in Token Revocation Request.
0 commit comments