Class CheckoutProcessRequest
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.web.endpoint.domain.checkout.CheckoutProcessRequest
-
public class CheckoutProcessRequest extends Object
Request DTO used for providing information upon submitting a cart for checkout.- Author:
- Nick Crum (ncrum)
-
-
Constructor Summary
Constructors Constructor Description CheckoutProcessRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetRequestId()A unique id used to represent the request.Map<String,String>getSecurityCodes()A map of security codes to their payment ids.voidsetRequestId(String requestId)A unique id used to represent the request.voidsetSecurityCodes(Map<String,String> securityCodes)A map of security codes to their payment ids.StringtoString()
-
-
-
Method Detail
-
getRequestId
public String 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
public void setRequestId(String requestId)
A unique id used to represent the request. This value can be used to link various persisted entities/values to the originating request.
-
getSecurityCodes
public Map<String,String> 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.
-
-