Enum CrealogixReturnCode
- java.lang.Object
-
- java.lang.Enum<CrealogixReturnCode>
-
- de.adorsys.xs2a.adapter.crealogix.model.CrealogixReturnCode
-
- All Implemented Interfaces:
Serializable,Comparable<CrealogixReturnCode>
public enum CrealogixReturnCode extends Enum<CrealogixReturnCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CrealogixReturnCodefromValue(String text)static CrealogixReturnCodevalueOf(String name)Returns the enum constant of this type with the specified name.static CrealogixReturnCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CrealogixReturnCode NONE
-
CORRECT
public static final CrealogixReturnCode CORRECT
-
CORRECT_PASSWORD_CHANGE
public static final CrealogixReturnCode CORRECT_PASSWORD_CHANGE
-
FAILED
public static final CrealogixReturnCode FAILED
-
LOCKED
public static final CrealogixReturnCode LOCKED
-
TEMPORARY_LOCKED
public static final CrealogixReturnCode TEMPORARY_LOCKED
-
PASSWORD_EXPIRED
public static final CrealogixReturnCode PASSWORD_EXPIRED
-
OFFLINE_TOOL_ONLY
public static final CrealogixReturnCode OFFLINE_TOOL_ONLY
-
NO_SUITABLE_AUTHENTICATION_TYPE
public static final CrealogixReturnCode NO_SUITABLE_AUTHENTICATION_TYPE
-
TAN_WRONG
public static final CrealogixReturnCode TAN_WRONG
-
TAN_INVALIDATED
public static final CrealogixReturnCode TAN_INVALIDATED
-
TAN_EXPIRED
public static final CrealogixReturnCode TAN_EXPIRED
-
TAN_NOT_ACTIVE
public static final CrealogixReturnCode TAN_NOT_ACTIVE
-
NOTIFICATION_UNDELIVERABLE
public static final CrealogixReturnCode NOTIFICATION_UNDELIVERABLE
-
NOTIFICATION_CONFIRMATION_REJECTED
public static final CrealogixReturnCode NOTIFICATION_CONFIRMATION_REJECTED
-
NOTIFICATION_EXPIRED
public static final CrealogixReturnCode NOTIFICATION_EXPIRED
-
AWAITING_USER_RESPONSE
public static final CrealogixReturnCode AWAITING_USER_RESPONSE
-
-
Method Detail
-
values
public static CrealogixReturnCode[] 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 (CrealogixReturnCode c : CrealogixReturnCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CrealogixReturnCode 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
-
fromValue
public static CrealogixReturnCode fromValue(String text)
-
-