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

com.kakawait.spring.security.cas.client.ticket.ProxyTicketProvider Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.kakawait.spring.security.cas.client.ticket;

/**
 * Proxy ticker provider is simple interface that provides a way to get a CAS proxy ticket for a given service
 * and current bounded user.
 *
 * @author Jonathan Coueraud
 * @author Thibaud Leprêtre
 * @since 0.7.0
 */
public interface ProxyTicketProvider {

    /**
     * Ask proxy ticket for a given service to CAS server.
     *
     * @param service service name or (mostly) service URL
     * @return the proxy ticket or {@code null} if CAS server won't be able to return us a proxy ticket for given
     * {@code service}
     */
    String getProxyTicket(String service);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy