Package org.camunda.bpm.engine.impl.json
Class MigrationBatchConfigurationJsonConverter
- java.lang.Object
-
- org.camunda.bpm.engine.impl.json.JsonObjectConverter<MigrationBatchConfiguration>
-
- org.camunda.bpm.engine.impl.json.MigrationBatchConfigurationJsonConverter
-
public class MigrationBatchConfigurationJsonConverter extends JsonObjectConverter<MigrationBatchConfiguration>
-
-
Field Summary
Fields Modifier and Type Field Description static String
BATCH_ID
static MigrationBatchConfigurationJsonConverter
INSTANCE
static String
MIGRATION_PLAN
static String
PROCESS_INSTANCE_ID_MAPPINGS
static String
PROCESS_INSTANCE_IDS
static String
SKIP_IO_MAPPINGS
static String
SKIP_LISTENERS
-
Constructor Summary
Constructors Constructor Description MigrationBatchConfigurationJsonConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected DeploymentMappings
readIdMappings(com.google.gson.JsonObject json)
protected List<String>
readProcessInstanceIds(com.google.gson.JsonObject jsonObject)
com.google.gson.JsonObject
toJsonObject(MigrationBatchConfiguration configuration)
MigrationBatchConfiguration
toObject(com.google.gson.JsonObject json)
-
Methods inherited from class org.camunda.bpm.engine.impl.json.JsonObjectConverter
toJson
-
-
-
-
Field Detail
-
INSTANCE
public static final MigrationBatchConfigurationJsonConverter INSTANCE
-
MIGRATION_PLAN
public static final String MIGRATION_PLAN
- 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_LISTENERS
public static final String SKIP_LISTENERS
- See Also:
- Constant Field Values
-
SKIP_IO_MAPPINGS
public static final String SKIP_IO_MAPPINGS
- See Also:
- Constant Field Values
-
BATCH_ID
public static final String BATCH_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
toJsonObject
public com.google.gson.JsonObject toJsonObject(MigrationBatchConfiguration configuration)
- Specified by:
toJsonObject
in classJsonObjectConverter<MigrationBatchConfiguration>
-
toObject
public MigrationBatchConfiguration toObject(com.google.gson.JsonObject json)
- Specified by:
toObject
in classJsonObjectConverter<MigrationBatchConfiguration>
-
readProcessInstanceIds
protected List<String> readProcessInstanceIds(com.google.gson.JsonObject jsonObject)
-
readIdMappings
protected DeploymentMappings readIdMappings(com.google.gson.JsonObject json)
-
-