Enum Class BackChannelAuthErrorCode
java.lang.Object
java.lang.Enum<BackChannelAuthErrorCode>
org.forgerock.am.authn.backchannel.exceptions.BackChannelAuthErrorCode
- All Implemented Interfaces:
Serializable,Comparable<BackChannelAuthErrorCode>,java.lang.constant.Constable
Error codes for Back channel authentication.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe subject name and/or type is empty.The transaction id is null.The type is empty.The value is empty.An error occurred creating the transaction.There was an error fetching the transaction.The allowRetry field is invalid.The content is invalid.The provided data object is invalid.The identity is invalid.The realm is invalid.The subject name is invalid.The subject type is invalid.The tracking id is invalid.The transaction id is invalid.The tree is invalid.The type is invalid.The transaction has expired.The transaction id could not be found. -
Method Summary
Modifier and TypeMethodDescriptionstatic BackChannelAuthErrorCodeReturns the enum constant of this class with the specified name.static BackChannelAuthErrorCode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INVALID_SUBJECT_TYPE
The subject type is invalid. -
INVALID_CONTENT
The content is invalid. -
INVALID_REALM
The realm is invalid. -
INVALID_IDENTITY
The identity is invalid. -
INVALID_TREE
The tree is invalid. -
ERROR_CREATING_TRANSACTION
An error occurred creating the transaction. -
EMPTY_TYPE
The type is empty. -
INVALID_TYPE
The type is invalid. -
EMPTY_VALUE
The value is empty. -
EMPTY_SUBJECT_NAME_OR_TYPE
The subject name and/or type is empty. -
INVALID_SUBJECT_NAME
The subject name is invalid. -
EMPTY_TRANSACTION_ID
The transaction id is null. -
INVALID_TRANSACTION_ID
The transaction id is invalid. -
TRANSACTION_NOT_FOUND
The transaction id could not be found. -
ERROR_FETCHING_TRANSACTION
There was an error fetching the transaction. -
INVALID_DATA
The provided data object is invalid. -
INVALID_TRACKING_ID
The tracking id is invalid. -
TRANSACTION_EXPIRED
The transaction has expired. -
INVALID_ALLOW_RETRY
The allowRetry field is invalid.
-
-
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
-