Class InventoryBatchItemHandler<T2 extends SkuInventory>

All Implemented Interfaces:
BatchItemHandler<ComprehensiveProduct,T2>

public class InventoryBatchItemHandler<T2 extends SkuInventory> extends ProductRelatedBatchItemHandler<ComprehensiveProduct,T2>
  • Constructor Details

    • InventoryBatchItemHandler

      public InventoryBatchItemHandler(InventoryProvider<T2> inventoryProvider, com.broadleafcommerce.common.extension.TypeFactory typeFactory)
  • Method Details

    • handle

      public Supplier<T2> handle(HandlerArgs<ComprehensiveProduct,T2> args)
      Description copied from interface: BatchItemHandler
      Perform the necessary actions on the item in the batch. Accepts an instance of HandlerArgs and returns the handled item, which is then passed to BatchItemHandler.postHandle(HandlerArgs).
      Returns:
      A function that accepts an instance of HandlerArgs. If no further handling is necessary, this method or the supplier may return null.
    • canHandle

      public boolean canHandle(ExchangeObject exchangeObject)
      Description copied from interface: BatchItemHandler
      Determines if this handler can handle the given exchange object.
      Parameters:
      exchangeObject - the exchange object
      Returns:
      true if this handler can handle the exchange object, false otherwise
    • postHandle

      public Runnable postHandle(HandlerArgs<ComprehensiveProduct,T2> args)
      Description copied from interface: BatchItemHandler
      This method is called after the item has been saved. Any items that should be done after the item is saved should be done here. At minimum, the implementation should set the savedItem result on the parent. At this point, the item is considered "done" and no high risk operations (e.g. API calls) should be done here.
      Parameters:
      args - the handler arguments. Returns null if no action is necessary.
    • getInventoryProvider

      protected InventoryProvider<T2> getInventoryProvider()