Interface ExportManager
-
- All Known Implementing Classes:
DefaultExportManager
public interface ExportManagerWhileExportServiceis purely in charge of CRUD-related operations onExport, this service is a higher level abstraction that performs the surrounding logic of processing export operations. This includes processing requests and emitting the required messages. It internally delegates toExportServicefor CRUD operations.Resource services should directly interact with this manager rather than the
ExportServicefor export processing.For actual processing of exports, the manager delegates to
ExportProcessor, and for writing the files, the manager delegates to theExportFileWriter.- Author:
- Samarth Dhruva (samarthd)
- See Also:
ExportProcessor,ExportFileWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportinitiateExport(ExportRequest request, String target, String filterString, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)This method accepts an export request and the context of the request to build aExportand persist it in the data store.voidprocessExport(Export export)
-
-
-
Method Detail
-
initiateExport
Export initiateExport(ExportRequest request, String target, @Nullable String filterString, @Nullable com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
This method accepts an export request and the context of the request to build aExportand persist it in the data store.Sends a
ProcessExportRequestmessage to request that the export be processed.- Parameters:
request- a request to perform anExport.For each of the "exporting context" fields describing where the operation will be performed, the default implementation will first check if the field is supplied in
ExportRequest, and if not, use the value from theContextInfo.target- the target of the export. This is some value that can be mapped to a particular domain by the logic performing an export, rather than explicitly requiring the fully qualified classname. Used to populateExport.target.filterString- the filter string that should be used to find the records to export. Used to populateExport.filterString.contextInfo- context information surrounding sandboxing and multitenant state- Returns:
- the newly created
Export - Throws:
com.broadleafcommerce.common.error.validation.ValidationException- if therequestfailed validationIllegalArgumentException- ifrequestis null ortargetis blankcom.broadleafcommerce.data.tracking.core.exception.NotVisibleException- if the currently authenticated user is not permitted to perform an export in the final determined exporting context
-
processExport
void processExport(Export export)
Performs anExport, processing the requested records and writing the file in batches while updating the status for theExportas it goes.Note: this method should always be called with the result of
ExportService.setProcessingStatus(String)if the value is not null.The
ExportManagerwill delegate processing to the firstExportProcessorfor whichExportProcessor.canHandle(Export)returns true. Thus if more than oneExportProcessorcan handle a request, the bean registered with the higher priority will be used.The
ExportManagerwill delegate file writing to the firstExportFileWriterfor whichExportFileWriter.canHandle(Export)returns true. Thus if more than oneExportFileWritercan handle a request, the bean registered with the higher priority will be used.- Parameters:
export- the export to perform - this should always be the result ofExportService.setProcessingStatus(String)if it is not null
-
-