
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 extends GrantedAuthority> getAuthorities();
Object getCredentials();
Object getDetails();
Object getPrincipal();
boolean isAuthenticated();
void setAuthenticated(boolean isAuthenticated) throws IllegalArgumentException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy