Add AuthorizationGrantType.toString()
This adds AuthorizationGrantType.toString() which makes debuging easier. In particular, it will help when performing unit tests which validate the AuthorizationGrantType. Issue gh-16382
This commit is contained in:
+5
@@ -111,4 +111,9 @@ public final class AuthorizationGrantType implements Serializable {
|
||||
return this.getValue().hashCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "AuthorizationGrantType{" + "value='" + this.value + '\'' + '}';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user