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

org.apereo.cas.ticket.artifact.SamlArtifactTicket Maven / Gradle / Ivy

There is a newer version: 7.2.0-RC3
Show newest version
package org.apereo.cas.ticket.artifact;

import org.apereo.cas.ticket.ServiceTicket;

/**
 * This is {@link SamlArtifactTicket}.
 *
 * @author Misagh Moayyed
 * @since 5.2.0
 */
public interface SamlArtifactTicket extends ServiceTicket {

    /**
     * The ticket prefix.
     */
    String PREFIX = "SART";

    /**
     * Gets issuer.
     *
     * @return the issuer
     */
    String getIssuer();

    /**
     * Relying party id.
     *
     * @return the string
     */
    String getRelyingPartyId();


    /**
     * Gets saml object.
     *
     * @return the object
     */
    String getObject();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy