Commit 882d3faa authored by Maciej Bogdański's avatar Maciej Bogdański Committed by 陈健

OAUTH-3319 Fix and update field names in OpenIdDiscovery.java according to OpenID specification

parent 1f9e46ea
......@@ -9,6 +9,7 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
public class OpenIdDiscovery {
//required and recommended
private String issuer;
private String authorizationEndpoint;
private String tokenEndpoint;
......@@ -16,14 +17,20 @@ public class OpenIdDiscovery {
private String userinfoEndpoint;
private Collection<String> responseTypesSupported;
private Collection<String> subjectTypesSupported;
private Collection<String> idTokenSigningAlgValues;
private Collection<String> idTokenSigningAlgValuesSupported;
private Collection<String> tokenEndpointAuthMethodsSupported;
private Collection<String> scopesSupported;
private Collection<String> claimsSupported;
//optional but needed for SSO
private String checkSessionIframe;
private String endSessionEndpoint;
private boolean frontchannelLogoutSupported;
private boolean frontchannelLogoutSessionSupported;
//optional
private Collection<String> idTokenEncryptionAlgValuesSupported;
private Collection<String> idTokenEncryptionEncValuesSupported;
private Collection<String> acrValuesSupported;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment