Package com.adyen.model.acswebhooks
Enum AuthenticationInfo.ChallengeIndicatorEnum
- java.lang.Object
-
- java.lang.Enum<AuthenticationInfo.ChallengeIndicatorEnum>
-
- com.adyen.model.acswebhooks.AuthenticationInfo.ChallengeIndicatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationInfo.ChallengeIndicatorEnum>
- Enclosing class:
- AuthenticationInfo
public static enum AuthenticationInfo.ChallengeIndicatorEnum extends Enum<AuthenticationInfo.ChallengeIndicatorEnum>
Specifies a preference for receiving a challenge. Possible values: * **01**: No preference * **02**: No challenge requested * **03**: Challenge requested (preference) * **04**: Challenge requested (mandate) * **05**: No challenge requested (transactional risk analysis is already performed) * **07**: No challenge requested (SCA is already performed) * **08**: No challenge requested (trusted beneficiaries exemption of no challenge required) * **09**: Challenge requested (trusted beneficiaries prompt requested if challenge required) * **80**: No challenge requested (secure corporate payment with Mastercard) * **82**: No challenge requested (secure corporate payment with Visa)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationInfo.ChallengeIndicatorEnumfromValue(String value)StringgetValue()StringtoString()static AuthenticationInfo.ChallengeIndicatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationInfo.ChallengeIndicatorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_01
public static final AuthenticationInfo.ChallengeIndicatorEnum _01
-
_02
public static final AuthenticationInfo.ChallengeIndicatorEnum _02
-
_03
public static final AuthenticationInfo.ChallengeIndicatorEnum _03
-
_04
public static final AuthenticationInfo.ChallengeIndicatorEnum _04
-
_05
public static final AuthenticationInfo.ChallengeIndicatorEnum _05
-
_07
public static final AuthenticationInfo.ChallengeIndicatorEnum _07
-
_08
public static final AuthenticationInfo.ChallengeIndicatorEnum _08
-
_09
public static final AuthenticationInfo.ChallengeIndicatorEnum _09
-
_80
public static final AuthenticationInfo.ChallengeIndicatorEnum _80
-
_82
public static final AuthenticationInfo.ChallengeIndicatorEnum _82
-
-
Method Detail
-
values
public static AuthenticationInfo.ChallengeIndicatorEnum[] 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 (AuthenticationInfo.ChallengeIndicatorEnum c : AuthenticationInfo.ChallengeIndicatorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationInfo.ChallengeIndicatorEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<AuthenticationInfo.ChallengeIndicatorEnum>
-
fromValue
public static AuthenticationInfo.ChallengeIndicatorEnum fromValue(String value)
-
-