Class CartOfferValidationActivity
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.checkout.workflow.activity.CartOfferValidationActivity
-
- All Implemented Interfaces:
CheckoutWorkflowActivity
public class CartOfferValidationActivity extends Object implements CheckoutWorkflowActivity
ThisCheckoutWorkflowActivityis responsible for validating that the cart's offers, offer codes, and campaign codes are still valid.- Author:
- Skye Pekerti (SkyePekerti)
-
-
Constructor Summary
Constructors Constructor Description CartOfferValidationActivity(ExternalOfferProvider offerProvider, CampaignProvider campaignProvider, org.springframework.context.MessageSource messageSource, CartOperationService cartService)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CheckoutProcessDtoexecute(@NonNull CheckoutProcessDto processDto, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Method responsible for executing some work against the cart that is required for checkout.protected CampaignProvidergetCampaignProvider()protected CartOperationServicegetCartService()protected org.springframework.context.MessageSourcegetMessageSource()protected ExternalOfferProvidergetOfferProvider()protected CartOperationServicePropertiesgetProperties()CheckoutProcessDtorollback(@NonNull CheckoutProcessDto processDto, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Method responsible for rolling back any work that was done during the execution of theCheckoutWorkflowActivity.execute(CheckoutProcessDto, ContextInfo)method.voidsetProperties(CartOperationServiceProperties properties)protected voidvalidateCampaignCodeUsages(@NonNull CheckoutProcessDto processDto, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Deprecated.Deprecated as of 1.8, if using OfferService 2.0, this method is not usedprotected voidvalidateOfferAndOfferCodeUsages(@NonNull CheckoutProcessDto processDto, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Validate that the offers and offer codes used in the specified cart are still valid upon checkout.
-
-
-
Constructor Detail
-
CartOfferValidationActivity
public CartOfferValidationActivity(ExternalOfferProvider offerProvider, CampaignProvider campaignProvider, org.springframework.context.MessageSource messageSource, CartOperationService cartService)
-
-
Method Detail
-
execute
public CheckoutProcessDto execute(@NonNull @NonNull CheckoutProcessDto processDto, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
Description copied from interface:CheckoutWorkflowActivityMethod responsible for executing some work against the cart that is required for checkout. This may include, but is not limited to, cart validation checks, inventory reservations, or payment authorizations.- Specified by:
executein interfaceCheckoutWorkflowActivity- Parameters:
processDto- TheCheckoutProcessDtothat we're attempting to checkout with.contextInfo- Context information around sandbox and multitenant state.- Returns:
- The final state of the
CheckoutProcessDtofollowing the execution of the activity.
-
rollback
public CheckoutProcessDto rollback(@NonNull @NonNull CheckoutProcessDto processDto, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
Description copied from interface:CheckoutWorkflowActivityMethod responsible for rolling back any work that was done during the execution of theCheckoutWorkflowActivity.execute(CheckoutProcessDto, ContextInfo)method.- Specified by:
rollbackin interfaceCheckoutWorkflowActivity- Parameters:
processDto- TheCheckoutProcessDtothat we were attempting to checkout with, but ran into an exception/error.contextInfo- Context information around sandbox and multitenant state.- Returns:
- The final state of the
CheckoutProcessDtofollowing the rollback of the activity.
-
validateOfferAndOfferCodeUsages
protected void validateOfferAndOfferCodeUsages(@NonNull @NonNull CheckoutProcessDto processDto, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Validate that the offers and offer codes used in the specified cart are still valid upon checkout.- Parameters:
processDto- theCheckoutProcessDtothat we're attempting to checkout with.contextInfo- context surrounding sandboxing and multitenant state
-
validateCampaignCodeUsages
@Deprecated protected void validateCampaignCodeUsages(@NonNull @NonNull CheckoutProcessDto processDto, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
Deprecated.Deprecated as of 1.8, if using OfferService 2.0, this method is not usedValidate that the campaign codes used in the specified cart are still valid upon checkout.- Parameters:
processDto- theCheckoutProcessDtothat we're attempting to checkout with.contextInfo- context surrounding sandboxing and multitenant state
-
getOfferProvider
protected ExternalOfferProvider getOfferProvider()
-
getCampaignProvider
@Nullable protected CampaignProvider getCampaignProvider()
-
getMessageSource
protected org.springframework.context.MessageSource getMessageSource()
-
getCartService
protected CartOperationService getCartService()
-
getProperties
protected CartOperationServiceProperties getProperties()
-
setProperties
@Autowired public void setProperties(CartOperationServiceProperties properties)
-
-