Class DefaultPaymentTransactionExecutionService
- All Implemented Interfaces:
PaymentTransactionExecutionService
PaymentSummaries
in the context of a checkout submission.- Author:
- Chris Kittrell (ckittrell)
-
Constructor Summary
ConstructorDescriptionDefaultPaymentTransactionExecutionService
(PaymentTransactionExecutionProvider transactionExecutionProvider, PaymentProvider<PaymentSummary> paymentProvider, CartOperationCheckoutProperties properties, com.broadleafcommerce.common.extension.TypeFactory typeFactory) -
Method Summary
Modifier and TypeMethodDescriptionprotected TransactionExecutionRequest
buildTransactionExecutionRequest
(@NonNull com.broadleafcommerce.cart.client.domain.Cart cart, @NonNull PaymentSummary paymentSummary, @NonNull String requestId, String securityCode) Builds aTransactionExecutionRequest
to execute a transaction against the providedPaymentSummary
.protected List<PaymentTransactionFailureDetail>
buildTransactionFailureDetails
(@NonNull TransactionExecutionResponse response) Builds a list ofPaymentTransactionFailureDetails
based on theTransactionExecutionResponse
that was returned from PaymentTransactionServices.protected CheckoutProcessDto
claimTransactionsForRequest
(@NonNull CheckoutProcessDto processDto, @NonNull PaymentSummary paymentSummary, @NonNull String checkoutTransactionType, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected CheckoutProcessDto
executeCartPaymentTransactions
(@NonNull CheckoutProcessDto processDto, @NonNull Map<String, String> securityCodes, @NonNull List<PaymentSummary> paymentSummaries, @NonNull List<PaymentSummary> storeCreditPayments, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) executeCartPaymentTransactions
(@NonNull CheckoutProcessDto processDto, @NonNull Map<String, String> securityCodes, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Executes set of payment transactions against the cart'sPaymentSummaries
.protected CheckoutProcessDto
executePaymentTransaction
(@NonNull CheckoutProcessDto processDto, @NonNull PaymentSummary paymentSummary, String securityCode, @NonNull String checkoutTransactionType, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Executes a payment transaction against the providedPaymentSummary
.protected TransactionExecutionResponse
executePaymentTransaction
(@NonNull String checkoutTransactionType, @NonNull PaymentSummary paymentSummary, @NonNull TransactionExecutionRequest request, String lockToken, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Executes a payment transaction based on the given checkout transaction type against the givenPaymentSummary
.protected String
getApplicationIdFromContext
(com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected String
getCheckoutTransactionType
(@NonNull PaymentSummary paymentSummary, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Based on the providedPaymentSummary
, determine whichTransactionType
should be used to execute the payment stage of the checkout.protected String
getCheckoutTransactionType
(@NonNull String gatewayType, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Deprecated.Deprecated.since 1.8.1, no longer used as store credit balance validation is moved toCartPaymentMethodValidationActivity
protected PaymentNextAction
getPaymentNextAction
(@NonNull TransactionExecutionResponse response) protected PaymentPriorityStrategy
protected PaymentProvider<PaymentSummary>
protected PaymentTransactionExecutionProvider
Deprecated.since 1.7.6, in favor of existingtransactionExecutionProvider
protected CartOperationCheckoutProperties
protected String
getTenantIdFromContext
(com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected PaymentTransactionExecutionProvider
protected com.broadleafcommerce.common.extension.TypeFactory
protected CheckoutProcessDto
lookup3DSTransactionResults
(@NonNull CheckoutProcessDto processDto, @NonNull PaymentSummary paymentSummary, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected CheckoutProcessDto
lookupExternalTransactionResults
(@NonNull CheckoutProcessDto processDto, @NonNull PaymentSummary paymentSummary, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected boolean
paymentHasCheckoutAmountAwaitingResult
(@NonNull PaymentSummary paymentSummary, @NonNull String checkoutTransactionType) Determines if the givenPaymentSummary
has any amount awaiting result based on the given checkout transaction type.protected boolean
requires3dsVerification
(@NonNull List<PaymentTransactionFailureDetail> failureDetails) protected boolean
requiresExternalInteraction
(@NonNull List<PaymentTransactionFailureDetail> failureDetails) protected boolean
requiresHostedPaymentPageInteraction
(@NonNull List<PaymentTransactionFailureDetail> failureDetails) void
setCreditAccountTransactionExecutionProvider
(CreditAccountTransactionExecutionProvider creditAccountTransactionExecutionProvider) Deprecated.since 1.8.1, no longer used as store credit balance validation is moved toCartPaymentMethodValidationActivity
void
setPaymentPriorityStrategy
(PaymentPriorityStrategy paymentPriorityStrategy) void
setPaymentTransactionExecutionProvider
(PaymentTransactionExecutionProvider paymentTransactionExecutionProvider) Deprecated.since 1.7.6, in favor of existingtransactionExecutionProvider
protected boolean
shouldClaimTransactionsForRequest
(@NonNull PaymentSummary paymentSummary, @NonNull String checkoutTransactionType) protected boolean
shouldExecutePaymentTransaction
(@NonNull PaymentSummary paymentSummary, @NonNull String checkoutTransactionType) Determine whether to execute a transaction for this payment.protected boolean
shouldLookup3DSTransactionResults
(@NonNull PaymentSummary paymentSummary, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected boolean
shouldLookupExternalTransactionResults
(@NonNull PaymentSummary paymentSummary, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) protected List<PaymentSummary>
sortPayments
(@NonNull List<PaymentSummary> payments, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Given a list ofPaymentSummaries
, sorts them in order of which should be executed first based on thePaymentSummary.getGatewayType()
.protected List<PaymentSummary>
sortPayments
(List<PaymentSummary> payments) Deprecated.since 1.7.2, in favor ofsortPayments(List, ContextInfo)
-
Constructor Details
-
DefaultPaymentTransactionExecutionService
public DefaultPaymentTransactionExecutionService(PaymentTransactionExecutionProvider transactionExecutionProvider, PaymentProvider<PaymentSummary> paymentProvider, CartOperationCheckoutProperties properties, com.broadleafcommerce.common.extension.TypeFactory typeFactory)
-
-
Method Details
-
executeCartPaymentTransactions
public CheckoutProcessDto executeCartPaymentTransactions(@NonNull @NonNull CheckoutProcessDto processDto, @NonNull @NonNull Map<String, String> securityCodes, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Description copied from interface:PaymentTransactionExecutionService
Executes set of payment transactions against the cart'sPaymentSummaries
.- Specified by:
executeCartPaymentTransactions
in interfacePaymentTransactionExecutionService
- Parameters:
processDto
- TheCheckoutProcessDto
that we're attempting to checkout with and contains the relatedPaymentSummaries
securityCodes
- The map of card security codes keyed by payment id for processing saved paymentscontextInfo
- The context of the user's request.- Returns:
- The most up-to-date
CheckoutProcessDto
following the execution of the transaction
-
executeCartPaymentTransactions
protected CheckoutProcessDto executeCartPaymentTransactions(@NonNull @NonNull CheckoutProcessDto processDto, @NonNull @NonNull Map<String, String> securityCodes, @NonNull @NonNull List<PaymentSummary> paymentSummaries, @NonNull @NonNull List<PaymentSummary> storeCreditPayments, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
sortPayments
protected List<PaymentSummary> sortPayments(@NonNull @NonNull List<PaymentSummary> payments, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Given a list ofPaymentSummaries
, sorts them in order of which should be executed first based on thePaymentSummary.getGatewayType()
.This is used to order the cart's payments to produce the most favorable conditions when executing transactions against the payment, and primarily meant to help mitigate the challenges of multi-payment scenarios.
For example, if you have a payment method whose transactions are very challenging to reverse (in the case of a checkout failure), then it's best to order that payment last. If the
PaymentTransactionExecutionActivity
is the last activity in the workflow and the payment with the challenging reversal is processed last, then the reversal will actually never be needed. Instead, either this payment's transaction will pass and the checkout completes, or the transaction fails and only the workflow's previously completed work may need to be rolled back.- Parameters:
payments
- The un-ordered list of cart paymentscontextInfo
- Context information surrounding sandboxing and multitenant state- Returns:
- The sorted list of cart payments
-
sortPayments
Deprecated.since 1.7.2, in favor ofsortPayments(List, ContextInfo)
Hook used to order the cart's payments to produce the most favorable conditions when executing transactions against the payment. This is primarily meant to help mitigate the challenges of multi-payment scenarios. For example, if you have a payment method whose transactions are very challenging to roll back (in the case of a checkout failure), then it's best to order that payment last. If thePaymentTransactionExecutionActivity
is the last activity in the workflow and the payment with the challenging rollback is processed last, then the rollback will actually never occur. Instead, either this payment's transaction will pass and the checkout completes, or the transaction fails and only previously completed work may need to be rolled back.- Parameters:
payments
- The un-ordered list of cart payments- Returns:
- The sorted list of cart payments
-
getCheckoutTransactionType
protected String getCheckoutTransactionType(@NonNull @NonNull PaymentSummary paymentSummary, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Based on the providedPaymentSummary
, determine whichTransactionType
should be used to execute the payment stage of the checkout.- Parameters:
paymentSummary
- One of the cart's payment summaries- Returns:
- The desired transaction type for the gateway
-
getCheckoutTransactionType
protected String getCheckoutTransactionType(@NonNull @NonNull String gatewayType, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Deprecated. -
getApplicationIdFromContext
@Nullable protected String getApplicationIdFromContext(@Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
getTenantIdFromContext
@Nullable protected String getTenantIdFromContext(@Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
shouldLookup3DSTransactionResults
protected boolean shouldLookup3DSTransactionResults(@NonNull @NonNull PaymentSummary paymentSummary, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
shouldLookupExternalTransactionResults
protected boolean shouldLookupExternalTransactionResults(@NonNull @NonNull PaymentSummary paymentSummary, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
lookup3DSTransactionResults
protected CheckoutProcessDto lookup3DSTransactionResults(@NonNull @NonNull CheckoutProcessDto processDto, @NonNull @NonNull PaymentSummary paymentSummary, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
lookupExternalTransactionResults
protected CheckoutProcessDto lookupExternalTransactionResults(@NonNull @NonNull CheckoutProcessDto processDto, @NonNull @NonNull PaymentSummary paymentSummary, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
shouldExecutePaymentTransaction
protected boolean shouldExecutePaymentTransaction(@NonNull @NonNull PaymentSummary paymentSummary, @NonNull @NonNull String checkoutTransactionType) Determine whether to execute a transaction for this payment.- Parameters:
paymentSummary
- the payment summary to be evaluatedcheckoutTransactionType
- The type of transaction that is to be executed.- Returns:
- true if a transaction should be executed against this payment, false otherwise
-
executePaymentTransaction
protected CheckoutProcessDto executePaymentTransaction(@NonNull @NonNull CheckoutProcessDto processDto, @NonNull @NonNull PaymentSummary paymentSummary, @Nullable String securityCode, @NonNull @NonNull String checkoutTransactionType, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) Executes a payment transaction against the providedPaymentSummary
.- Parameters:
processDto
- TheCheckoutProcessDto
used to execute the paymentspaymentSummary
- ThePaymentSummary
of the payment that will be acted upon by the transaction.securityCode
- The payment method security code that may be required to execute the transaction.checkoutTransactionType
- The type of transaction that is to be executed.contextInfo
- The context of the user's request.- Returns:
- The most up-to-date cart following the execution of the transaction
- Throws:
PaymentTransactionFailureException
- if the transaction was not successfully executed, either due to a transaction failure or an unexpected exception.
-
executePaymentTransaction
protected TransactionExecutionResponse executePaymentTransaction(@NonNull @NonNull String checkoutTransactionType, @NonNull @NonNull PaymentSummary paymentSummary, @NonNull @NonNull TransactionExecutionRequest request, @Nullable String lockToken, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) throws UnsupportedOperationException Executes a payment transaction based on the given checkout transaction type against the givenPaymentSummary
.- Parameters:
checkoutTransactionType
- the type of transaction that is to be executedpaymentSummary
- thePaymentSummary
to execute the transaction againstrequest
- theTransactionExecutionRequest
to executelockToken
- the token that owns the payment lockcontextInfo
- the context of the user's request- Returns:
- a
TransactionExecutionResponse
representing the result of the transaction execution - Throws:
UnsupportedOperationException
- if the given checkout transaction type is not supported
-
buildTransactionExecutionRequest
protected TransactionExecutionRequest buildTransactionExecutionRequest(@NonNull @NonNull com.broadleafcommerce.cart.client.domain.Cart cart, @NonNull @NonNull PaymentSummary paymentSummary, @NonNull @NonNull String requestId, @Nullable String securityCode) Builds aTransactionExecutionRequest
to execute a transaction against the providedPaymentSummary
.- Parameters:
cart
- The cart that is being checked out & that owns the relatedPaymentSummary
.paymentSummary
- ThePaymentSummary
of the payment that will be acted upon by executing a transaction.requestId
- The id representing this request to checkout.securityCode
- The payment method security code that may be required to execute the transaction.- Returns:
- A
TransactionExecutionRequest
based on the providedPaymentSummary
.
-
getPaymentNextAction
@Nullable protected PaymentNextAction getPaymentNextAction(@NonNull @NonNull TransactionExecutionResponse response) -
buildTransactionFailureDetails
protected List<PaymentTransactionFailureDetail> buildTransactionFailureDetails(@NonNull @NonNull TransactionExecutionResponse response) Builds a list ofPaymentTransactionFailureDetails
based on theTransactionExecutionResponse
that was returned from PaymentTransactionServices.- Parameters:
response
- TheTransactionExecutionResponse
returned from PaymentTransaction from PaymentTransactionServices.- Returns:
- a list of
PaymentTransactionFailureDetails
based on theTransactionExecutionResponse
that was returned from PaymentTransactionServices.
-
shouldClaimTransactionsForRequest
protected boolean shouldClaimTransactionsForRequest(@NonNull @NonNull PaymentSummary paymentSummary, @NonNull @NonNull String checkoutTransactionType) -
claimTransactionsForRequest
protected CheckoutProcessDto claimTransactionsForRequest(@NonNull @NonNull CheckoutProcessDto processDto, @NonNull @NonNull PaymentSummary paymentSummary, @NonNull @NonNull String checkoutTransactionType, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo) -
paymentHasCheckoutAmountAwaitingResult
protected boolean paymentHasCheckoutAmountAwaitingResult(@NonNull @NonNull PaymentSummary paymentSummary, @NonNull @NonNull String checkoutTransactionType) Determines if the givenPaymentSummary
has any amount awaiting result based on the given checkout transaction type.- Parameters:
paymentSummary
- thePaymentSummary
to check againstcheckoutTransactionType
- the checkout transaction type for this payment- Returns:
- true if the given
PaymentSummary
has any amount awaiting result, otherwise false
-
requires3dsVerification
protected boolean requires3dsVerification(@NonNull @NonNull List<PaymentTransactionFailureDetail> failureDetails) -
requiresExternalInteraction
protected boolean requiresExternalInteraction(@NonNull @NonNull List<PaymentTransactionFailureDetail> failureDetails) -
requiresHostedPaymentPageInteraction
protected boolean requiresHostedPaymentPageInteraction(@NonNull @NonNull List<PaymentTransactionFailureDetail> failureDetails) -
getTransactionExecutionProvider
-
getPaymentProvider
-
getProperties
-
getTypeFactory
protected com.broadleafcommerce.common.extension.TypeFactory getTypeFactory() -
getPaymentPriorityStrategy
-
setPaymentPriorityStrategy
-
getPaymentTransactionExecutionProvider
Deprecated.since 1.7.6, in favor of existingtransactionExecutionProvider
-
setPaymentTransactionExecutionProvider
@Deprecated @Autowired public void setPaymentTransactionExecutionProvider(PaymentTransactionExecutionProvider paymentTransactionExecutionProvider) Deprecated.since 1.7.6, in favor of existingtransactionExecutionProvider
-
getCreditAccountTransactionExecutionProvider
@Deprecated protected CreditAccountTransactionExecutionProvider getCreditAccountTransactionExecutionProvider()Deprecated.since 1.8.1, no longer used as store credit balance validation is moved toCartPaymentMethodValidationActivity
-
setCreditAccountTransactionExecutionProvider
@Deprecated @Autowired public void setCreditAccountTransactionExecutionProvider(CreditAccountTransactionExecutionProvider creditAccountTransactionExecutionProvider) Deprecated.since 1.8.1, no longer used as store credit balance validation is moved toCartPaymentMethodValidationActivity
-
getCheckoutTransactionType(PaymentSummary, ContextInfo)