Interface PriceProvider<T extends PriceData>

All Known Implementing Classes:
ExternalPriceProvider

public interface PriceProvider<T extends PriceData>
Interface for interacting with a (typically) remote service to save and/or fetch pricing data.
Author:
Kelly Tisdell (ktisdell)
  • Method Details

    • bulkReadPriceData

      List<T> bulkReadPriceData(BatchContext<ComprehensiveProduct> batch)
      Bulk read price data for products in a batch. This allows reading price data for many products/pricelists at once.
      Parameters:
      batch - the batch of products to read price data for
      Returns:
      a list of price data for the products in the batch
    • bulkReadPriceData

      List<T> bulkReadPriceData(cz.jirutka.rsql.parser.ast.Node filters, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
      Bulk read price data for products in a batch. This allows reading price data for many products/pricelists at once.
      Parameters:
      filters - the filters to apply to the price data
      context - the context to use when reading the price data
      Returns:
      a list of price data for the products in the batch
    • createPriceData

      T createPriceData(T priceData, BatchContext<?> batch)
    • updatePriceData

      T updatePriceData(T priceData, BatchContext<?> batch)
    • deletePriceData

      void deletePriceData(String id, BatchContext<?> batch)