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

no.tornado.brap.auth.AnonymousPrincipal Maven / Gradle / Ivy

package no.tornado.brap.auth;

import java.io.Serializable;

/**
 * Default principal that will be returned from the AuthenticationContext
 * if the active AuthenticationProvider does not set another one. 
 */
public class AnonymousPrincipal implements Serializable {
    public String getName() {
        return getClass().getCanonicalName();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy