Enum TransactionRetrievalStrategies

    • Enum Constant Detail

      • EXTERNAL_LOOKUP_DURING_CHECKOUT_WORKFLOW

        public static final TransactionRetrievalStrategies EXTERNAL_LOOKUP_DURING_CHECKOUT_WORKFLOW
        This strategy is used when we lookup the payment transaction from the gateway for 3DS transactions during the checkout workflow.
      • IMPORT_WITH_TRANSACTION_RECORDING_ENDPOINT

        public static final TransactionRetrievalStrategies IMPORT_WITH_TRANSACTION_RECORDING_ENDPOINT
        This strategy specifies that the transaction can be imported and created in Broadleaf using the transaction recording endpoint call during checkout.
    • Method Detail

      • values

        public static TransactionRetrievalStrategies[] 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 (TransactionRetrievalStrategies c : TransactionRetrievalStrategies.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TransactionRetrievalStrategies 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 name
        NullPointerException - if the argument is null