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

org.apereo.cas.ticket.query.SamlAttributeQueryTicket Maven / Gradle / Ivy

There is a newer version: 7.2.0-RC3
Show newest version
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