All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.develex.saml.Configuration Maven / Gradle / Ivy

The newest version!
package es.develex.saml;

public class Configuration {
    private String consumerServiceUrl;
    private String issuer;
    private String identitySsoUrl;

    public String getConsumerServiceUrl() {
        return consumerServiceUrl;
    }

    public void setConsumerServiceUrl(String assertionConsumerServiceUrl) {
        this.consumerServiceUrl = assertionConsumerServiceUrl;
    }

    public String getIssuer() {
        return issuer;
    }

    public void setIssuer(String issuer) {
        this.issuer = issuer;
    }

    public String getIdentitySsoUrl() {
        return identitySsoUrl;
    }

    public void setIdentitySsoUrl(String identitySsoUrl) {
        this.identitySsoUrl = identitySsoUrl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy