Class InventoryBatchItemHandler<T2 extends SkuInventory>
java.lang.Object
com.broadleafcommerce.dataexchange.service.AbstractBatchItemHandler<T1,T2>
com.broadleafcommerce.dataexchange.service.product.ProductRelatedBatchItemHandler<ComprehensiveProduct,T2>
com.broadleafcommerce.dataexchange.service.product.InventoryBatchItemHandler<T2>
- All Implemented Interfaces:
BatchItemHandler<ComprehensiveProduct,
T2>
public class InventoryBatchItemHandler<T2 extends SkuInventory>
extends ProductRelatedBatchItemHandler<ComprehensiveProduct,T2>
-
Constructor Summary
ConstructorsConstructorDescriptionInventoryBatchItemHandler
(InventoryProvider<T2> inventoryProvider, com.broadleafcommerce.common.extension.TypeFactory typeFactory) -
Method Summary
Modifier and TypeMethodDescriptionboolean
canHandle
(ExchangeObject exchangeObject) Determines if this handler can handle the given exchange object.protected InventoryProvider<T2>
handle
(HandlerArgs<ComprehensiveProduct, T2> args) Perform the necessary actions on the item in the batch.This method is called after the item has been saved.Methods inherited from class com.broadleafcommerce.dataexchange.service.AbstractBatchItemHandler
applyHandle, applyPostOperations, buildTranslationMap, createFutureInternal, execute, execute, execute, execute, getSavedTopLevel, getTypeFactory, isNewlyCreated
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.broadleafcommerce.dataexchange.service.BatchItemHandler
completedFuture, createCompletableFuture, createCompletableFuture, createSupplementalFutures, handleCreate, handleDelete, handleUpdate, populateCorrelationId, preHandle, retryableRunnable, retryableSupplier, shouldAbort
-
Constructor Details
-
InventoryBatchItemHandler
public InventoryBatchItemHandler(InventoryProvider<T2> inventoryProvider, com.broadleafcommerce.common.extension.TypeFactory typeFactory)
-
-
Method Details
-
handle
Description copied from interface:BatchItemHandler
Perform the necessary actions on the item in the batch. Accepts an instance ofHandlerArgs
and returns the handled item, which is then passed toBatchItemHandler.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
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
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
-