Enum CrealogixActionCode
- java.lang.Object
-
- java.lang.Enum<CrealogixActionCode>
-
- de.adorsys.xs2a.adapter.crealogix.model.CrealogixActionCode
-
- All Implemented Interfaces:
Serializable,Comparable<CrealogixActionCode>
public enum CrealogixActionCode extends Enum<CrealogixActionCode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description POLL_FOR_TANPROMPT_FOR_AUTH_METHOD_SELECTIONPROMPT_FOR_LOGIN_NAME_PASSWORDPROMPT_FOR_PASSWORD_CHANGEPROMPT_FOR_SCOPE_ACCEPTANCEPROMPT_FOR_TANSEND_REQUESTSTOP_POLL_FOR_TAN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CrealogixActionCodefromValue(String text)static CrealogixActionCodevalueOf(String name)Returns the enum constant of this type with the specified name.static CrealogixActionCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROMPT_FOR_LOGIN_NAME_PASSWORD
public static final CrealogixActionCode PROMPT_FOR_LOGIN_NAME_PASSWORD
-
PROMPT_FOR_AUTH_METHOD_SELECTION
public static final CrealogixActionCode PROMPT_FOR_AUTH_METHOD_SELECTION
-
PROMPT_FOR_TAN
public static final CrealogixActionCode PROMPT_FOR_TAN
-
POLL_FOR_TAN
public static final CrealogixActionCode POLL_FOR_TAN
-
STOP_POLL_FOR_TAN
public static final CrealogixActionCode STOP_POLL_FOR_TAN
-
PROMPT_FOR_PASSWORD_CHANGE
public static final CrealogixActionCode PROMPT_FOR_PASSWORD_CHANGE
-
PROMPT_FOR_SCOPE_ACCEPTANCE
public static final CrealogixActionCode PROMPT_FOR_SCOPE_ACCEPTANCE
-
SEND_REQUEST
public static final CrealogixActionCode SEND_REQUEST
-
-
Method Detail
-
values
public static CrealogixActionCode[] 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 (CrealogixActionCode c : CrealogixActionCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CrealogixActionCode 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 CrealogixActionCode fromValue(String text)
-
-