![JAR search and dependency download from the Maven repository](/logo.png)
dps.authentication.AuthenticationManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dps.authentication Show documentation
Show all versions of dps.authentication Show documentation
Provides authentication mechanism for webapplications
The newest version!
package dps.authentication;
public interface AuthenticationManager {
Boolean login(String username, String password);
Boolean login(String token);
AuthenticableUser getUser();
String getToken();
void logout();
Boolean isAuthenticated();
Boolean isAuthorized(String operation);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy