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

com.kakawait.spring.security.cas.client.validation.AssertionProvider Maven / Gradle / Ivy

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

import org.jasig.cas.client.validation.Assertion;

import javax.annotation.Nonnull;

/**
 * Assertion provider is simple interface that provides a way to get the current (user bounded) {@link Assertion}.
 *
 * @author Jonathan Coueraud
 * @author Thibaud Leprêtre
 * @since 0.7.0
 */
public interface AssertionProvider {

    /**
     * Retrieve current request {@link Assertion}.
     * @return the current request {@link Assertion}.
     */
    @Nonnull
    Assertion getAssertion();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy