Enum Class D1PaymentExperience

java.lang.Object
java.lang.Enum<D1PaymentExperience>
com.thalesgroup.gemalto.d1.d1pay.D1PaymentExperience
All Implemented Interfaces:
Serializable, Comparable<D1PaymentExperience>, java.lang.constant.Constable

public enum D1PaymentExperience extends Enum<D1PaymentExperience>
D1 Pay Payment Experience Application can set to have ONE_TAP_ENABLED (default) or TWO_TAP_ALWAYS experience.
Since:
2.3.0
  • Enum Constant Details

    • ONE_TAP_ENABLED

      public static final D1PaymentExperience 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

      public static final D1PaymentExperience 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

      public static D1PaymentExperience[] 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

      public static D1PaymentExperience valueOf(String name)
      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 name
      NullPointerException - if the argument is null