
com.daedafusion.security.authentication.Authentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
The newest version!
package com.daedafusion.security.authentication;
import com.daedafusion.security.common.CallbackHandler;
import com.daedafusion.security.exceptions.AccountLockedException;
import com.daedafusion.security.exceptions.AuthenticationFailedException;
import com.daedafusion.security.exceptions.PasswordQualityException;
import com.daedafusion.security.exceptions.PasswordResetRequiredException;
/**
* Created by mphilpot on 7/16/14.
*/
public interface Authentication
{
Subject login(CallbackHandler handler) throws AccountLockedException, PasswordResetRequiredException, PasswordQualityException, AuthenticationFailedException;
void logoff(Subject subject);
boolean verify(Subject subject);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy