Make OAuth2AuthorizationResponseType constructor public
Closes gh-9584
This commit is contained in:
parent
dca7e03b91
commit
b556655290
|
|
@ -56,7 +56,7 @@ public final class OAuth2AuthorizationResponseType implements Serializable {
|
||||||
|
|
||||||
private final String value;
|
private final String value;
|
||||||
|
|
||||||
private OAuth2AuthorizationResponseType(String value) {
|
public OAuth2AuthorizationResponseType(String value) {
|
||||||
Assert.hasText(value, "value cannot be empty");
|
Assert.hasText(value, "value cannot be empty");
|
||||||
this.value = value;
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue