com.descope.model.sso.SSOSettingsResponse 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 java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SSOSettingsResponse {
private String tenantID;
private String idpEntityID;
private String idpSSOURL;
private String idpCertificate;
private String idpMetadataURL;
private String spEntityID;
private String spACSUrl;
private String spCertificate;
private UserMapping userMapping;
private List groupsMapping;
private String redirectURL;
private List domains;
// Deprecated - use domains instead
private String domain;
}