Package com.thalesgroup.gemalto.d1.d1pay
Enum Class D1PaymentExperience
- All Implemented Interfaces:
Serializable,Comparable<D1PaymentExperience>,java.lang.constant.Constable
D1 Pay Payment Experience
Application can set to have ONE_TAP_ENABLED (default) or TWO_TAP_ALWAYS experience.
- Since:
- 2.3.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPayment experience allowing one or two taps according to the card profile and end user authentication state.Payment experience in two taps always requires end user authentication. -
Method Summary
Modifier and TypeMethodDescriptionstatic D1PaymentExperienceReturns the enum constant of this class with the specified name.static D1PaymentExperience[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONE_TAP_ENABLED
Payment experience allowing one or two taps according to the card profile and end user authentication state. This option is the default payment experience on the SDK. When end user is authenticated prior tapping on the POS terminal, payment could be performed in one tap. Use this option to support one tap payment including HVT (high-Value transaction) with pre-entry (device-unlock) or LVT (low-value transaction) and transit transaction without authentication. -
TWO_TAP_ALWAYS
Payment experience in two taps always requires end user authentication. After the first tap on POS terminal, end user will have to authenticate and then tap the 2nd time to complete the transaction.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-