Add ClientAuthenticationMethod#toString

Closes gh-13497
This commit is contained in:
Josh Cummings
2023-07-12 14:24:26 -06:00
parent 80a0ade3e3
commit a77ef9ecf4
3 changed files with 7 additions and 3 deletions

View File

@@ -98,4 +98,9 @@ public final class ClientAuthenticationMethod implements Serializable {
return getValue().hashCode();
}
@Override
public String toString() {
return this.value;
}
}