Class DefaultComprehensiveProductExchangeService<T extends ComprehensiveProduct>

java.lang.Object
com.broadleafcommerce.dataexchange.service.AbstractDataExchangeService<T>
com.broadleafcommerce.dataexchange.service.catalog.DefaultComprehensiveProductExchangeService<T>
Type Parameters:
T -
All Implemented Interfaces:
ComprehensiveProductExchangeService<T>, DataExchangeService<T>

public class DefaultComprehensiveProductExchangeService<T extends ComprehensiveProduct> extends AbstractDataExchangeService<T> implements ComprehensiveProductExchangeService<T>
Default service to handle composite data exchange of comprehensive products.
Author:
Kelly Tisdell (ktisdell)
  • Constructor Details

  • Method Details

    • saveAll

      protected void saveAll(BatchContext<T> batchContext)
      Description copied from class: AbstractDataExchangeService
      This is the entry point for subclasses to inject logic to handle the structure that has been passed in. This may be called in a different Thread than the calling thread. Typically, the containing object needs to be processed first to ensure that the correct references (e.g. contextIds, pricing keys, etc. are available). It is expected that the values in the Map will be updated when they are created or saved, allowing the aggregate method to aggregate the details.
      Specified by:
      saveAll in class AbstractDataExchangeService<T extends ComprehensiveProduct>
      Parameters:
      batchContext - the batch context
      See Also:
    • createProductSaveCompletableFutures

      protected List<CompletableFuture<Void>> createProductSaveCompletableFutures(BatchContext<T> batchContext)
      Creates a list of CompletableFuture, one for each ComprehensiveProduct, such that each product can be saved individually in an asynchronous way. The list that is returned can be used to compose more complicated interactions, including saving translations, prices, etc., also in an asynchronous way that is coordinated and orchestrated.
      Parameters:
      batchContext - the batch context
      Returns:
      a list of CompletableFuture that will save each product asynchronously
    • fetchExistingProductData

      protected void fetchExistingProductData(BatchContext<T> batchContext)
    • fetchExistingVariants

      protected void fetchExistingVariants(BatchContext<T> batchContext)
    • fetchExistingProducts

      protected void fetchExistingProducts(List<T> originalProductList, BatchContext<T> batchContext)
    • getOriginalProductList

      @NotNull protected @NotNull List<T> getOriginalProductList(BatchContext<T> batchContext)
    • getCatalogProvider

      protected CatalogProvider<T,Variant> getCatalogProvider()
    • getProductBatchItemHandler

      protected ProductBatchItemHandler<T> getProductBatchItemHandler()