Class HandlerArgs<T1 extends ExchangeObject,T2 extends ExchangeObject>
java.lang.Object
com.broadleafcommerce.dataexchange.service.HandlerArgs<T1,T2>
- Type Parameters:
T1
-T2
-
DTO for passing arguments to
BatchItemHandler.handle(HandlerArgs)
.-
Constructor Summary
ConstructorsConstructorDescriptionHandlerArgs
(T1 topLevelEntity, T2 beforeSaveItem, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate) HandlerArgs
(T1 topLevelEntity, T2 beforeSaveItem, T2 savedItem, BatchContext<T1> batchContext, BatchItemOperationType operationType, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate) -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
boolean
The batch context that the item is being saved in.The item that is being saved.org.springframework.core.task.AsyncTaskExecutor
The executor that should be used to run asynchronous tasks.The type of operation that is being performed on the item.Additional properties that can be used to pass information between steps in the handler.<T> T
getProperty
(String key) Get a property for this specific handler.org.springframework.retry.support.RetryTemplate
The retry template that should be used to retry operations.The item that was saved.The parent item that the item being saved belongs to.int
hashCode()
void
setBatchContext
(BatchContext<T1> batchContext) The batch context that the item is being saved in.void
setBeforeSaveItem
(T2 beforeSaveItem) The item that is being saved.void
setExecutor
(org.springframework.core.task.AsyncTaskExecutor executor) The executor that should be used to run asynchronous tasks.void
setOperationType
(BatchItemOperationType operationType) The type of operation that is being performed on the item.void
setProperty
(String key, Object value) Set a property for this specific handler.void
setRetryTemplate
(org.springframework.retry.support.RetryTemplate retryTemplate) The retry template that should be used to retry operations.void
setSavedItem
(T2 savedItem) The item that was saved.void
setTopLevelEntity
(T1 topLevelEntity) The parent item that the item being saved belongs to.toString()
-
Constructor Details
-
HandlerArgs
public HandlerArgs(T1 topLevelEntity, T2 beforeSaveItem, BatchContext<T1> batchContext, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate) -
HandlerArgs
public HandlerArgs(T1 topLevelEntity, T2 beforeSaveItem, @Nullable T2 savedItem, BatchContext<T1> batchContext, BatchItemOperationType operationType, org.springframework.core.task.AsyncTaskExecutor executor, org.springframework.retry.support.RetryTemplate retryTemplate) -
HandlerArgs
public HandlerArgs()
-
-
Method Details
-
getProperty
Get a property for this specific handler.- Parameters:
key
- the key of the property- Returns:
- the value of the property
-
setProperty
Set a property for this specific handler.- Parameters:
key
- the key of the propertyvalue
- the value of the property
-
getTopLevelEntity
The parent item that the item being saved belongs to. -
getBeforeSaveItem
The item that is being saved. It is the item received from the caller. -
getSavedItem
The item that was saved. By default, this will only be populated afterBatchItemHandler.handle(HandlerArgs)
has been executed. -
getBatchContext
The batch context that the item is being saved in. -
getProperties
Additional properties that can be used to pass information between steps in the handler. -
getOperationType
The type of operation that is being performed on the item. SeeBatchItemHandler.handle(HandlerArgs)
. -
getExecutor
public org.springframework.core.task.AsyncTaskExecutor getExecutor()The executor that should be used to run asynchronous tasks. -
getRetryTemplate
public org.springframework.retry.support.RetryTemplate getRetryTemplate()The retry template that should be used to retry operations. -
setTopLevelEntity
The parent item that the item being saved belongs to. -
setBeforeSaveItem
The item that is being saved. It is the item received from the caller. -
setSavedItem
The item that was saved. By default, this will only be populated afterBatchItemHandler.handle(HandlerArgs)
has been executed. -
setBatchContext
The batch context that the item is being saved in. -
setOperationType
The type of operation that is being performed on the item. SeeBatchItemHandler.handle(HandlerArgs)
. -
setExecutor
public void setExecutor(org.springframework.core.task.AsyncTaskExecutor executor) The executor that should be used to run asynchronous tasks. -
setRetryTemplate
public void setRetryTemplate(org.springframework.retry.support.RetryTemplate retryTemplate) The retry template that should be used to retry operations. -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-