com.descope.model.ssoapp.SSOApplicationSAMLSettings 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.
package com.descope.model.ssoapp;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SSOApplicationSAMLSettings {
private String loginPageUrl;
private String idpCert;
private Boolean useMetadataInfo;
private String metadataUrl;
private String entityId;
private String acsUrl;
private String certificate;
private List attributeMapping;
private List groupsMapping;
private String idpMetadataUrl;
private String idpEntityId;
private String idpSsoUrl;
private List acsAllowedCallbacks;
private String subjectNameIdType;
private String subjectNameIdFormat;
private String defaultRelayState;
private Boolean forceAuthentication;
private String idpLogoutUrl;
private String logoutRedirectURL;
}