Interface SavedCartFileUploadFacade
-
- All Known Implementing Classes:
DefaultSavedCartFileUploadFacade
public interface SavedCartFileUploadFacadeThis interface supports asynchronous processing of file upload to create a SavedCart.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateCartFromFileUpload(java.io.InputStream fileStream, java.lang.String fileName, java.lang.String fileFormat)Creates SavedCart from the file uploaded in asynchronous fashion.
-
-
-
Method Detail
-
createCartFromFileUpload
void createCartFromFileUpload(java.io.InputStream fileStream, java.lang.String fileName, java.lang.String fileFormat)Creates SavedCart from the file uploaded in asynchronous fashion. This will create a @SavedCartFileUploadEventevent which is captured by event listener @SavedCartFileUploadEventListenerto trigger a business process.- Parameters:
fileStream- Input stream of the filefileName- File NamefileFormat- File Format
-
-