Skip to content

Commit b556655

Browse files
committed
Make OAuth2AuthorizationResponseType constructor public
Closes gh-9584
1 parent dca7e03 commit b556655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/endpoint/OAuth2AuthorizationResponseType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public final class OAuth2AuthorizationResponseType implements Serializable {
5656

5757
private final String value;
5858

59-
private OAuth2AuthorizationResponseType(String value) {
59+
public OAuth2AuthorizationResponseType(String value) {
6060
Assert.hasText(value, "value cannot be empty");
6161
this.value = value;
6262
}

0 commit comments

Comments
 (0)