org.apereo.cas.ticket.query.SamlAttributeQueryTicket 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.query;
import org.apereo.cas.authentication.Authentication;
import org.apereo.cas.ticket.ServiceTicket;
/**
* This is {@link SamlAttributeQueryTicket}.
*
* @author Misagh Moayyed
* @since 5.2.0
*/
public interface SamlAttributeQueryTicket extends ServiceTicket {
/**
* The ticket prefix.
*/
String PREFIX = "SATQ";
/**
* Gets relying party.
*
* @return the relying party id
*/
String getRelyingParty();
/**
* Gets saml object.
*
* @return the object
*/
String getObject();
/**
* Gets authentication.
*
* @return the authentication
*/
@Override
Authentication getAuthentication();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy