Skip to content

Commit 580e125

Browse files
committed
Allow For New Identity Provider Field
This commit updates the OAuth2 configuration to allow for the new 'Issuer' field.
1 parent 1506931 commit 580e125

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/uaa/identityproviders/_OAuth2Configuration.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,11 @@ abstract class _OAuth2Configuration extends AbstractAuthenticationConfiguration
3535
@Nullable
3636
abstract String getCheckTokenUrl();
3737

38+
/**
39+
* The OAuth 2.0 token issuer.
40+
*/
41+
@JsonProperty("issuer")
42+
@Nullable
43+
abstract String getIssuer();
44+
3845
}

0 commit comments

Comments
 (0)