We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d67a7a6 commit e4ec62aCopy full SHA for e4ec62a
scribejava-core/src/main/java/com/github/scribejava/core/revoke/TokenTypeHint.java
@@ -21,4 +21,15 @@ public String getValue() {
21
return value;
22
}
23
24
+ /**
25
+ * @return value
26
+ * @deprecated use {@link #getValue() } to get a lower-cased value as in reference (RFC7009), otherwise you can
27
+ * continue using this method. Note, that returned value will be UPPER-cased (not overrided toString method) in the
28
+ * next release.
29
+ */
30
+ @Override
31
+ @Deprecated
32
+ public String toString() {
33
+ return value;
34
+ }
35
0 commit comments