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

de.comhix.web.auth.UserProvider Maven / Gradle / Ivy

The newest version!
package de.comhix.web.auth;

import java.util.Optional;

/**
 *
 * @author Benjamin Beeker
 */
public interface UserProvider {
    Optional getUser();

    default String getUserOrFail() {
        return getUser().orElseThrow(AuthenticationException::new);
    }

    void setUser(String user);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy