Package com.saperion.ngc.exception
Enum Class AuthenticationException.AuthenticationExceptionCause
java.lang.Object
java.lang.Enum<AuthenticationException.AuthenticationExceptionCause>
com.saperion.ngc.exception.AuthenticationException.AuthenticationExceptionCause
- All Implemented Interfaces:
Serializable
,Comparable<AuthenticationException.AuthenticationExceptionCause>
,Constable
- Enclosing class:
- AuthenticationException
public static enum AuthenticationException.AuthenticationExceptionCause
extends Enum<AuthenticationException.AuthenticationExceptionCause>
Possible causes of an AuthenticationException.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUser does not have sufficient access rights.The current user is not allowed to use the selected license.User is not logged in.User's password has expired and must be changed.Technical user can't log on to web client.The current user is locked in usermanagement. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOGGED_OFF
User is not logged in. -
INSUFFICIENT_RIGHTS
User does not have sufficient access rights. -
PASSWORD_EXPIRED
User's password has expired and must be changed. -
TECHNICAL_USER
Technical user can't log on to web client. -
LICENSE_NOT_ALLOWED
The current user is not allowed to use the selected license. -
USER_LOCKED
The current user is locked in usermanagement.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-