com.descope.model.sso.SSOOIDCSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.model.sso;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SSOOIDCSettings {
private String name;
private String clientId;
private String clientSecret;
private String redirectUrl;
private String authUrl;
private String tokenUrl;
private String userDataUrl;
private List scope;
@JsonProperty("JWKsUrl")
private String jwksUrl;
private OIDCAttributeMapping userAttrMapping;
private Boolean manageProviderTokens;
private String callbackDomain;
private List prompt;
private String grantType;
private String issuer;
}