Interface GuestCartTokenValidator
-
- All Known Implementing Classes:
DefaultGuestCartTokenValidator
public interface GuestCartTokenValidatorValidator interface used for validating a guest token for aCart.- Author:
- Nick Crum (ncrum)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalidateGuestTokenForCheckout(String cartId, String guestToken, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Validates the provided guest token string for the given cart ID during checkout.voidvalidateGuestTokenForOperation(String cartId, String guestToken, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)Validates the provided guest token string for the given cart ID during a cart operation.
-
-
-
Method Detail
-
validateGuestTokenForCheckout
void validateGuestTokenForCheckout(String cartId, @Nullable String guestToken, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
Validates the provided guest token string for the given cart ID during checkout. This method will throw a runtime exception if the guest token is found to be invalid. Typically, this method will require the guest token to be non-null and valid.- Parameters:
cartId- the cart IDguestToken- the guest tokencontextInfo- the context info
-
validateGuestTokenForOperation
void validateGuestTokenForOperation(String cartId, @Nullable String guestToken, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
Validates the provided guest token string for the given cart ID during a cart operation. This method will throw a runtime exception if the guest token is found to be invalid. Typically, this method will treat a null guest token as valid.- Parameters:
cartId- the cart IDguestToken- the guest tokencontextInfo- the context info
-
-