Class CheckoutProcessRequest
java.lang.Object
com.broadleafcommerce.cartoperation.web.endpoint.domain.checkout.CheckoutProcessRequest
Request DTO used for providing information upon submitting a cart for checkout.
- Author:
- Nick Crum (ncrum)
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionA unique id used to represent the request.A map of security codes to their payment ids.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()
-
Constructor Details
-
CheckoutProcessRequest
public CheckoutProcessRequest()
-
-
Method Details
-
toString
-
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.
-