Enum SCAErrorCode
- java.lang.Object
-
- java.lang.Enum<SCAErrorCode>
-
- de.adorsys.ledgers.util.exception.SCAErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<SCAErrorCode>
public enum SCAErrorCode extends Enum<SCAErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SCAErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static SCAErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_SCA_DATA_NOT_FOUND
public static final SCAErrorCode USER_SCA_DATA_NOT_FOUND
-
AUTH_CODE_GENERATION_FAILURE
public static final SCAErrorCode AUTH_CODE_GENERATION_FAILURE
-
SCA_METHOD_NOT_SUPPORTED
public static final SCAErrorCode SCA_METHOD_NOT_SUPPORTED
-
SCA_OPERATION_EXPIRED
public static final SCAErrorCode SCA_OPERATION_EXPIRED
-
SCA_OPERATION_NOT_FOUND
public static final SCAErrorCode SCA_OPERATION_NOT_FOUND
-
SCA_OPERATION_USED_OR_STOLEN
public static final SCAErrorCode SCA_OPERATION_USED_OR_STOLEN
-
SCA_VALIDATION_ATTEMPT_FAILED
public static final SCAErrorCode SCA_VALIDATION_ATTEMPT_FAILED
-
SCA_OPERATION_FAILED
public static final SCAErrorCode SCA_OPERATION_FAILED
-
SCA_OPERATION_VALIDATION_INVALID
public static final SCAErrorCode SCA_OPERATION_VALIDATION_INVALID
-
PSU_AUTH_ATTEMPT_INVALID
public static final SCAErrorCode PSU_AUTH_ATTEMPT_INVALID
-
AUTHENTICATION_FAILURE
public static final SCAErrorCode AUTHENTICATION_FAILURE
-
RECOVERY_POINT_NOT_FOUND
public static final SCAErrorCode RECOVERY_POINT_NOT_FOUND
-
SCA_SENDER_ERROR
public static final SCAErrorCode SCA_SENDER_ERROR
-
-
Method Detail
-
values
public static SCAErrorCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SCAErrorCode c : SCAErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SCAErrorCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-