org.apereo.cas.ticket.artifact.SamlArtifactTicket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-server-support-saml-idp-ticket Show documentation
Show all versions of cas-server-support-saml-idp-ticket Show documentation
cas-server-support-saml-idp-ticket
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