Interface WebshopFlowService
- All Known Implementing Classes:
WebshopFlowServiceImpl
public interface WebshopFlowService
DWR service for webshop flow.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
sendConfirmationMailAndFinalizeOrder
(String orderKey, Map<String, String> params) Send confirmation mail to the user.submit
(WebshopData webshopData, Map<String, String> params) Submit an order.
-
Method Details
-
submit
WebshopResponse submit(WebshopData webshopData, Map<String, String> params) throws InterruptedExceptionSubmit an order.- Parameters:
webshopData
- The data to create the order for.params
- Additional params (e.g. the business unit).- Throws:
InterruptedException
-
sendConfirmationMailAndFinalizeOrder
Send confirmation mail to the user.- Parameters:
orderKey
- The primary key of the created order.params
- Additional params (e.g. the business unit).
-