Package com.adyen.model.acswebhooks
Enum AuthenticationInfo.TransStatusEnum
- java.lang.Object
-
- java.lang.Enum<AuthenticationInfo.TransStatusEnum>
-
- com.adyen.model.acswebhooks.AuthenticationInfo.TransStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationInfo.TransStatusEnum>
- Enclosing class:
- AuthenticationInfo
public static enum AuthenticationInfo.TransStatusEnum extends Enum<AuthenticationInfo.TransStatusEnum>
The `transStatus` value as defined in the 3D Secure 2 specification. Possible values: * **Y**: Authentication / Account verification successful. * **N**: Not Authenticated / Account not verified. Transaction denied. * **U**: Authentication / Account verification could not be performed. * **I**: Informational Only / 3D Secure Requestor challenge preference acknowledged. * **R**: Authentication / Account verification rejected by the Issuer.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationInfo.TransStatusEnumfromValue(String value)StringgetValue()StringtoString()static AuthenticationInfo.TransStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationInfo.TransStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Y
public static final AuthenticationInfo.TransStatusEnum Y
-
N
public static final AuthenticationInfo.TransStatusEnum N
-
R
public static final AuthenticationInfo.TransStatusEnum R
-
I
public static final AuthenticationInfo.TransStatusEnum I
-
U
public static final AuthenticationInfo.TransStatusEnum U
-
-
Method Detail
-
values
public static AuthenticationInfo.TransStatusEnum[] 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.TransStatusEnum c : AuthenticationInfo.TransStatusEnum.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.TransStatusEnum 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.TransStatusEnum>
-
fromValue
public static AuthenticationInfo.TransStatusEnum fromValue(String value)
-
-