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 Summary
Modifier and TypeMethodDescriptionBulk read price data for products in a batch.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.createPriceData
(T priceData, BatchContext<?> batch) void
deletePriceData
(String id, BatchContext<?> batch) updatePriceData
(T priceData, BatchContext<?> batch)
-
Method Details
-
bulkReadPriceData
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 datacontext
- the context to use when reading the price data- Returns:
- a list of price data for the products in the batch
-
createPriceData
-
updatePriceData
-
deletePriceData
-