Uses of Class
com.logicaldoc.core.security.authentication.AuthenticationException
-
Packages that use AuthenticationException Package Description com.logicaldoc.core.security com.logicaldoc.core.security.authentication The pluggable authentication mechanism. -
-
Uses of AuthenticationException in com.logicaldoc.core.security
Methods in com.logicaldoc.core.security that throw AuthenticationException Modifier and Type Method Description static void
LoginThrottle. checkLoginThrottle(String username, String ip)
Performs anti brute force attack checksSession
SessionManager. createSession(User user, Client client)
Creates a new session by authenticated the given user and stores it in the pool of opened sessionsSession
SessionManager. newSession(String username, String password, Client client)
Creates a new session by authenticated the given user and stores it in the pool of opened sessionsSession
SessionManager. newSession(String username, String password, String key, Client client)
Creates a new session by authenticated the given user and stores it in the pool of opened sessions -
Uses of AuthenticationException in com.logicaldoc.core.security.authentication
Subclasses of AuthenticationException in com.logicaldoc.core.security.authentication Modifier and Type Class Description class
AccountDisabledException
Raised when the account exists but it is disabledclass
AccountNotFoundException
Raised when the specified user was not foundclass
IPBlockedException
Raised when the remote client is in the black listclass
PasswordExpiredException
Raised when the password has expiredclass
UsernameBlockedException
Raised when the remote client is in the black listclass
WrongPasswordException
Raised when given password is not correctMethods in com.logicaldoc.core.security.authentication that throw AuthenticationException Modifier and Type Method Description User
AbstractAuthenticator. authenticate(String username, String password, String key)
User
AbstractAuthenticator. authenticate(String username, String password, String key, Client client)
User
AuthenticationChain. authenticate(String username, String password)
User
AuthenticationChain. authenticate(String username, String password, String key)
User
AuthenticationChain. authenticate(String username, String password, String key, Client client)
User
Authenticator. authenticate(String username, String password)
Authenticates the user using the given credentials, if successful, the corresponding user is returned.User
Authenticator. authenticate(String username, String password, String key)
Authenticates the user using the given credentials, if successful, the corresponding user is returned.User
Authenticator. authenticate(String username, String password, String key, Client client)
Authenticates the user using the given credentials, if successful, the corresponding user is returned.User
DefaultAuthenticator. authenticate(String username, String password)
-