Class CartRequest
java.lang.Object
com.broadleafcommerce.cart.client.domain.Cart
com.broadleafcommerce.cartoperation.web.endpoint.domain.CartRequest
- All Implemented Interfaces:
CartVersionedRequest
,com.broadleafcommerce.data.tracking.core.ContextStateAware
,com.broadleafcommerce.money.CurrencyConsumer
,Serializable
,javax.money.CurrencySupplier
public class CartRequest
extends com.broadleafcommerce.cart.client.domain.Cart
implements CartVersionedRequest
Represents a cart request (when a cart is submitted as the request body).
- Author:
- Jacob Mitash
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the cart version that the client is aware of.A unique id used to represent the request.A map of security codes to their payment ids.void
setCartVersion
(Integer version) Sets the cart version.void
setRequestId
(String requestId) A unique id used to represent the request.void
setSecurityCodes
(Map<String, String> securityCodes) A map of security codes to their payment ids.toString()
Methods inherited from class com.broadleafcommerce.cart.client.domain.Cart
canEqual, equals, getAdjustments, getApprovalRequestedDate, getApproverEmail, getAssignedSalesRepEmail, getAssignedSalesRepId, getAttributeChoices, getAttributes, getCampaignRefs, getCartAlerts, getCartItems, getCartItemsWithDependentItems, getCartPricing, getCheckoutSubmissions, getContextState, getCreateDate, getCurrency, getCustomerRef, getEmailAddress, getExpirationDate, getFulfillmentGroups, getId, getInternalAttributes, getLastCatalogReprice, getLastUpdatedAudit, getLocale, getName, getOfferCodes, getOrderNumber, getQuantity, getStatus, getSubmitDate, getType, getVersion, getVouchers, hashCode, isAnonymous, isPriced, isTaxEstimated, setAdjustments, setApprovalRequestedDate, setApproverEmail, setAssignedSalesRepEmail, setAssignedSalesRepId, setAttributeChoices, setAttributes, setCampaignRefs, setCartAlerts, setCartItems, setCartPricing, setCheckoutSubmissions, setContextState, setCreateDate, setCurrency, setCustomerRef, setEmailAddress, setExpirationDate, setFulfillmentGroups, setId, setInternalAttributes, setLastCatalogReprice, setLastUpdatedAudit, setLocale, setName, setOfferCodes, setOrderNumber, setPriced, setStatus, setSubmitDate, setTaxEstimated, setType, setVersion, setVouchers
-
Constructor Details
-
CartRequest
public CartRequest()
-
-
Method Details
-
getCartVersion
Description copied from interface:CartVersionedRequest
Gets the cart version that the client is aware of. This should be populated by the client when making a request that modifies an existing cart.- Specified by:
getCartVersion
in interfaceCartVersionedRequest
- Returns:
- the cart version
-
setCartVersion
Description copied from interface:CartVersionedRequest
Sets the cart version. Typically only used for setting the version on the request body if the version came from an alternative source (e.g. cookie or header).- Specified by:
setCartVersion
in interfaceCartVersionedRequest
- Parameters:
version
- the version to set for this request
-
toString
- Overrides:
toString
in classcom.broadleafcommerce.cart.client.domain.Cart
-
getRequestId
A unique id used to represent the request. This value can be used to link various persisted entities/values to the originating request. -
setRequestId
A unique id used to represent the request. This value can be used to link various persisted entities/values to the originating request. -
getSecurityCodes
A map of security codes to their payment ids. This value can be used in payment activities to pass secure code information to payment gateways. -
setSecurityCodes
A map of security codes to their payment ids. This value can be used in payment activities to pass secure code information to payment gateways.
-