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

org.paranora.ssoc.token.Authentication Maven / Gradle / Ivy

package org.paranora.ssoc.token;

import java.io.Serializable;
import java.security.Principal;
import java.util.Collection;

public interface Authentication extends Principal, Serializable {

    Collection getAuthorities();

    Object getCredentials();

    Object getDetails();

    Object getPrincipal();

    boolean isAuthenticated();

    void setAuthenticated(boolean isAuthenticated) throws IllegalArgumentException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy