Class MigrationInstructionImpl
- java.lang.Object
- 
- org.camunda.bpm.engine.impl.migration.MigrationInstructionImpl
 
- 
- All Implemented Interfaces:
- MigrationInstruction
 
 public class MigrationInstructionImpl extends Object implements MigrationInstruction - Author:
- Thorben Lindhauer
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected StringsourceActivityIdprotected StringtargetActivityIdprotected booleanupdateEventTrigger
 - 
Constructor SummaryConstructors Constructor Description MigrationInstructionImpl(String sourceActivityId, String targetActivityId)MigrationInstructionImpl(String sourceActivityId, String targetActivityId, boolean updateEventTrigger)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSourceActivityId()StringgetTargetActivityId()booleanisUpdateEventTrigger()voidsetUpdateEventTrigger(boolean updateEventTrigger)StringtoString()
 
- 
- 
- 
Method Detail- 
getSourceActivityIdpublic String getSourceActivityId() - Specified by:
- getSourceActivityIdin interface- MigrationInstruction
- Returns:
- the id of the activity of the source process definition that this instruction maps instances from
 
 - 
getTargetActivityIdpublic String getTargetActivityId() - Specified by:
- getTargetActivityIdin interface- MigrationInstruction
- Returns:
- the id of the activity of the target process definition that this instruction maps instances to
 
 - 
isUpdateEventTriggerpublic boolean isUpdateEventTrigger() - Specified by:
- isUpdateEventTriggerin interface- MigrationInstruction
- Returns:
- whether this flow node's event trigger is going to be updated during
   migration. Can only be true for flow nodes that define a persistent event trigger.
   See MigrationInstructionBuilder.updateEventTrigger()for details
 
 - 
setUpdateEventTriggerpublic void setUpdateEventTrigger(boolean updateEventTrigger) 
 
- 
 
-