Class DeleteProcessInstanceBatchConfigurationJsonConverter
- java.lang.Object
-
- org.camunda.bpm.engine.impl.json.JsonObjectConverter<T>
-
- org.camunda.bpm.engine.impl.batch.AbstractBatchConfigurationObjectConverter<DeleteProcessInstanceBatchConfiguration>
-
- org.camunda.bpm.engine.impl.batch.deletion.DeleteProcessInstanceBatchConfigurationJsonConverter
-
public class DeleteProcessInstanceBatchConfigurationJsonConverter extends AbstractBatchConfigurationObjectConverter<DeleteProcessInstanceBatchConfiguration>
Perform serialization of DeleteProcessInstanceBatchConfiguration into JSON format.- Author:
- Askar Akhmerov
-
-
Field Summary
Fields Modifier and Type Field Description static String
DELETE_REASON
static String
FAIL_IF_NOT_EXISTS
static DeleteProcessInstanceBatchConfigurationJsonConverter
INSTANCE
static String
PROCESS_INSTANCE_ID_MAPPINGS
static String
PROCESS_INSTANCE_IDS
static String
SKIP_CUSTOM_LISTENERS
static String
SKIP_SUBPROCESSES
-
Fields inherited from class org.camunda.bpm.engine.impl.batch.AbstractBatchConfigurationObjectConverter
BATCH_ID
-
-
Constructor Summary
Constructors Constructor Description DeleteProcessInstanceBatchConfigurationJsonConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteProcessInstanceBatchConfiguration
readConfiguration(com.google.gson.JsonObject json)
protected DeploymentMappings
readIdMappings(com.google.gson.JsonObject json)
protected List<String>
readProcessInstanceIds(com.google.gson.JsonObject jsonObject)
com.google.gson.JsonObject
writeConfiguration(DeleteProcessInstanceBatchConfiguration configuration)
-
Methods inherited from class org.camunda.bpm.engine.impl.batch.AbstractBatchConfigurationObjectConverter
toJsonObject, toObject
-
Methods inherited from class org.camunda.bpm.engine.impl.json.JsonObjectConverter
toJson
-
-
-
-
Field Detail
-
INSTANCE
public static final DeleteProcessInstanceBatchConfigurationJsonConverter INSTANCE
-
DELETE_REASON
public static final String DELETE_REASON
- See Also:
- Constant Field Values
-
PROCESS_INSTANCE_IDS
public static final String PROCESS_INSTANCE_IDS
- See Also:
- Constant Field Values
-
PROCESS_INSTANCE_ID_MAPPINGS
public static final String PROCESS_INSTANCE_ID_MAPPINGS
- See Also:
- Constant Field Values
-
SKIP_CUSTOM_LISTENERS
public static final String SKIP_CUSTOM_LISTENERS
- See Also:
- Constant Field Values
-
SKIP_SUBPROCESSES
public static final String SKIP_SUBPROCESSES
- See Also:
- Constant Field Values
-
FAIL_IF_NOT_EXISTS
public static final String FAIL_IF_NOT_EXISTS
- See Also:
- Constant Field Values
-
-
Method Detail
-
writeConfiguration
public com.google.gson.JsonObject writeConfiguration(DeleteProcessInstanceBatchConfiguration configuration)
- Specified by:
writeConfiguration
in classAbstractBatchConfigurationObjectConverter<DeleteProcessInstanceBatchConfiguration>
-
readConfiguration
public DeleteProcessInstanceBatchConfiguration readConfiguration(com.google.gson.JsonObject json)
- Specified by:
readConfiguration
in classAbstractBatchConfigurationObjectConverter<DeleteProcessInstanceBatchConfiguration>
-
readProcessInstanceIds
protected List<String> readProcessInstanceIds(com.google.gson.JsonObject jsonObject)
-
readIdMappings
protected DeploymentMappings readIdMappings(com.google.gson.JsonObject json)
-
-