Class PaymentTransactionExecutionActivity

  • All Implemented Interfaces:
    CheckoutWorkflowActivity, RequiresSecurePaymentInformationActivity

    public class PaymentTransactionExecutionActivity
    extends Object
    implements RequiresSecurePaymentInformationActivity
    This CheckoutWorkflowActivity is responsible for executing payment transactions that are required to complete a successful checkout. This is where we strongly suggest that you execute payment transactions due to the amount of control & visibility that it provides. With that being said, if transactions were executed prior to entering the CheckoutWorkflow, then this activity doesn't have any work to do. Alternatively, if you wish to process the payment transactions at a later time, then it can be done by skipping the transaction execution in this activity. We strongly suggest that this is the last activity in your CheckoutWorkflow to eliminate the need to reverse successful authorization transactions for carts with a single payment method. If the cart includes multiple payments that are to be authorized within the checkout workflow, then this activity ordering will not avoid the need to reverse an authorization. In that case, there's a chance that one of the payments will be successfully authorized & then must be reversed if one of the other payments fails authorization.
    Author:
    Chris Kittrell (ckittrell)