Class PurgeImportProperties
java.lang.Object
com.broadleafcommerce.dataimport.service.purge.PurgeImportProperties
@ConfigurationProperties("broadleaf.dataimport.purge")
public class PurgeImportProperties
extends Object
Properties used when purging imports via
PurgeImportJobHandler
- Author:
- Chad Harchar (charchar)
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
int
The batch size for deletingBatchItemCompletion
entitiesint
The number of days beyond which to delete import datavoid
setImportBatchSize
(int importBatchSize) void
setItemCompletionBatchSize
(int itemCompletionBatchSize) The batch size for deletingBatchItemCompletion
entitiesvoid
setNumDays
(int numDays) The number of days beyond which to delete import data
-
Constructor Details
-
PurgeImportProperties
public PurgeImportProperties()
-
-
Method Details
-
getNumDays
public int getNumDays()The number of days beyond which to delete import data -
setNumDays
public void setNumDays(int numDays) The number of days beyond which to delete import data -
getImportBatchSize
public int getImportBatchSize() -
setImportBatchSize
public void setImportBatchSize(int importBatchSize) -
getItemCompletionBatchSize
public int getItemCompletionBatchSize()The batch size for deletingBatchItemCompletion
entities -
setItemCompletionBatchSize
public void setItemCompletionBatchSize(int itemCompletionBatchSize) The batch size for deletingBatchItemCompletion
entities
-