Class PriceDataBatchItemHandler<T extends Prices>

Type Parameters:
T -
All Implemented Interfaces:
BatchItemHandler<ComprehensiveProduct,T>

public class PriceDataBatchItemHandler<T extends Prices> extends ProductRelatedBatchItemHandler<ComprehensiveProduct,T>
Handles the processing of price data for a product. This works a little different from typical handlers in that we process all price data associated with a price list rather than a single price data object. The reason for this is we treat the Prices object as all price data for a given price list. This informs the handler on how to update all price data for a product and given price list.

For example, if there are 4 existing price data for a product, but the request only contains 1 price data, we will delete the other 3 price data.

  • Field Details

    • EXISTING_PRICE_DATA_KEY

      public static final String EXISTING_PRICE_DATA_KEY
      Existing price data fetched at the beginning of the batch process. Available on the batch context. Will be in a Map<String, Map<String, List<PriceData>>. The key is the price data target. The value is a map of price data for the product, keyed by the price list id. See DefaultPriceDataPreloadProcessor
      See Also:
    • SAVED_PRICE_DATA_KEY

      protected static final String SAVED_PRICE_DATA_KEY
      Saved price data is stored in the batch properties under this key.
      See Also:
    • DELETE_PRICE_DATA_KEY

      protected static final String DELETE_PRICE_DATA_KEY
      IDs of price data that need to be deleted are stored in the batch properties under this key. Will be a Set<String>.
      See Also:
    • CREATE_PRICE_DATA_KEY

      protected static final String CREATE_PRICE_DATA_KEY
      Price data that needs to be created is stored in the batch properties under this key.
      See Also:
    • UPDATE_PRICE_DATA_KEY

      protected static final String UPDATE_PRICE_DATA_KEY
      Price data that needs to be updated is stored in the batch properties under this key.
      See Also:
    • LOCAL_PRICE_DATA_KEY

      protected static final String LOCAL_PRICE_DATA_KEY
      Key used to store the existing price data for the product currently being handled. Will be a List<PriceData>.
      See Also:
  • Constructor Details

    • PriceDataBatchItemHandler

      public PriceDataBatchItemHandler(PriceProvider<PriceData> priceProvider, com.broadleafcommerce.common.extension.TypeFactory typeFactory)
  • Method Details