org.camunda.bpm.engine.migration
Interface MigrationPlan
- All Known Implementing Classes:
- MigrationPlanImpl
public interface MigrationPlan
Specifies how process instances from one process definition (the source process definition)
should be migrated to another process definition (the target process definition).
A migration plan consists of a number of MigrationInstructions that tell which
activity maps to which. The set of instructions is complete, i.e. the migration logic does not perform
migration steps that are not given by the instructions
- Author:
- Thorben Lindhauer
getInstructions
List<MigrationInstruction> getInstructions()
- Returns:
- the list of instructions that this plan consists of
getSourceProcessDefinitionId
String getSourceProcessDefinitionId()
- Returns:
- the id of the process definition that is migrated from
getTargetProcessDefinitionId
String getTargetProcessDefinitionId()
- Returns:
- the id of the process definition that is migrated to
Copyright © 2017 camunda services GmbH. All rights reserved.