Class BatchConfiguration
- java.lang.Object
-
- org.camunda.bpm.engine.impl.batch.BatchConfiguration
-
- Direct Known Subclasses:
DeleteProcessInstanceBatchConfiguration
,MessageCorrelationBatchConfiguration
,MigrationBatchConfiguration
,ModificationBatchConfiguration
,RestartProcessInstancesBatchConfiguration
,SetRemovalTimeBatchConfiguration
,SetRetriesBatchConfiguration
,UpdateProcessInstancesSuspendStateBatchConfiguration
public class BatchConfiguration extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected String
batchId
protected boolean
failIfNotExists
protected DeploymentMappings
idMappings
protected List<String>
ids
-
Constructor Summary
Constructors Constructor Description BatchConfiguration(List<String> ids)
BatchConfiguration(List<String> ids, boolean failIfNotExists)
BatchConfiguration(List<String> ids, DeploymentMappings mappings)
BatchConfiguration(List<String> ids, DeploymentMappings mappings, boolean failIfNotExists)
BatchConfiguration(List<String> ids, DeploymentMappings mappings, String batchId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBatchId()
DeploymentMappings
getIdMappings()
List<String>
getIds()
boolean
isFailIfNotExists()
void
setBatchId(String batchId)
void
setFailIfNotExists(boolean failIfNotExists)
void
setIdMappings(DeploymentMappings idMappings)
void
setIds(List<String> ids)
-
-
-
Field Detail
-
idMappings
protected DeploymentMappings idMappings
-
failIfNotExists
protected boolean failIfNotExists
-
batchId
protected String batchId
-
-
Constructor Detail
-
BatchConfiguration
public BatchConfiguration(List<String> ids, DeploymentMappings mappings)
-
BatchConfiguration
public BatchConfiguration(List<String> ids, DeploymentMappings mappings, boolean failIfNotExists)
-
BatchConfiguration
public BatchConfiguration(List<String> ids, DeploymentMappings mappings, String batchId)
-
-
Method Detail
-
getIdMappings
public DeploymentMappings getIdMappings()
-
setIdMappings
public void setIdMappings(DeploymentMappings idMappings)
-
isFailIfNotExists
public boolean isFailIfNotExists()
-
setFailIfNotExists
public void setFailIfNotExists(boolean failIfNotExists)
-
getBatchId
public String getBatchId()
-
setBatchId
public void setBatchId(String batchId)
-
-