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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum 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 SummaryModifier 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_OFFUser is not logged in.
- 
INSUFFICIENT_RIGHTSUser does not have sufficient access rights.
- 
PASSWORD_EXPIREDUser's password has expired and must be changed.
- 
TECHNICAL_USERTechnical user can't log on to web client.
- 
LICENSE_NOT_ALLOWEDThe current user is not allowed to use the selected license.
- 
USER_LOCKEDThe current user is locked in usermanagement.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-