Uses of Interface
org.camunda.bpm.engine.migration.MigrationPlan
-
Packages that use MigrationPlan Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: Exposes information about ongoing and past process instances.
FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.json org.camunda.bpm.engine.impl.migration org.camunda.bpm.engine.impl.migration.batch org.camunda.bpm.engine.impl.migration.instance.parser org.camunda.bpm.engine.impl.migration.validation.instruction org.camunda.bpm.engine.migration org.camunda.bpm.engine.rest.dto.migration org.camunda.bpm.engine.rest.impl -
-
Uses of MigrationPlan in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine with parameters of type MigrationPlan Modifier and Type Method Description MigrationPlanExecutionBuilder
RuntimeService. newMigration(MigrationPlan migrationPlan)
Executes a migration plan for a given list of process instances. -
Uses of MigrationPlan in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl with parameters of type MigrationPlan Modifier and Type Method Description MigrationPlanExecutionBuilder
RuntimeServiceImpl. newMigration(MigrationPlan migrationPlan)
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return MigrationPlan Modifier and Type Method Description MigrationPlan
CreateMigrationPlanCmd. execute(CommandContext commandContext)
Methods in org.camunda.bpm.engine.impl.cmd with parameters of type MigrationPlan Modifier and Type Method Description protected ValidatingMigrationInstructions
CreateMigrationPlanCmd. wrapMigrationInstructions(MigrationPlan migrationPlan, ProcessDefinitionImpl sourceProcessDefinition, ProcessDefinitionImpl targetProcessDefinition, MigrationPlanValidationReportImpl planReport)
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.json
Methods in org.camunda.bpm.engine.impl.json that return MigrationPlan Modifier and Type Method Description MigrationPlan
MigrationPlanJsonConverter. toObject(com.google.gson.JsonObject json)
Methods in org.camunda.bpm.engine.impl.json with parameters of type MigrationPlan Modifier and Type Method Description com.google.gson.JsonObject
MigrationPlanJsonConverter. toJsonObject(MigrationPlan migrationPlan)
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration
Classes in org.camunda.bpm.engine.impl.migration that implement MigrationPlan Modifier and Type Class Description class
MigrationPlanImpl
Fields in org.camunda.bpm.engine.impl.migration declared as MigrationPlan Modifier and Type Field Description protected MigrationPlan
MigrationPlanExecutionBuilderImpl. migrationPlan
Methods in org.camunda.bpm.engine.impl.migration that return MigrationPlan Modifier and Type Method Description MigrationPlan
MigrationPlanBuilderImpl. build()
MigrationPlan
MigrationPlanExecutionBuilderImpl. getMigrationPlan()
Methods in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlan Modifier and Type Method Description Void
MigrateProcessInstanceCmd. migrateProcessInstance(CommandContext commandContext, String processInstanceId, MigrationPlan migrationPlan, ProcessDefinitionEntity targetProcessDefinition, boolean skipJavaSerializationFormatCheck)
Constructors in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlan Constructor Description MigrationPlanExecutionBuilderImpl(CommandExecutor commandExecutor, MigrationPlan migrationPlan)
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration.batch
Fields in org.camunda.bpm.engine.impl.migration.batch declared as MigrationPlan Modifier and Type Field Description protected MigrationPlan
MigrationBatchConfiguration. migrationPlan
Methods in org.camunda.bpm.engine.impl.migration.batch that return MigrationPlan Modifier and Type Method Description MigrationPlan
MigrationBatchConfiguration. getMigrationPlan()
Methods in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlan Modifier and Type Method Description void
MigrationBatchConfiguration. setMigrationPlan(MigrationPlan migrationPlan)
Constructors in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlan Constructor Description MigrationBatchConfiguration(List<String> ids, DeploymentMappings mappings, MigrationPlan migrationPlan, boolean isSkipCustomListeners, boolean isSkipIoMappings)
MigrationBatchConfiguration(List<String> ids, DeploymentMappings mappings, MigrationPlan migrationPlan, boolean isSkipCustomListeners, boolean isSkipIoMappings, String batchId)
MigrationBatchConfiguration(List<String> ids, MigrationPlan migrationPlan, boolean isSkipCustomListeners, boolean isSkipIoMappings, String batchId)
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration.instance.parser
Methods in org.camunda.bpm.engine.impl.migration.instance.parser with parameters of type MigrationPlan Modifier and Type Method Description protected Map<String,List<MigrationInstruction>>
MigratingInstanceParseContext. organizeInstructionsBySourceScope(MigrationPlan migrationPlan)
MigratingProcessInstance
MigratingInstanceParser. parse(String processInstanceId, MigrationPlan migrationPlan, MigratingProcessInstanceValidationReportImpl processInstanceReport)
Constructors in org.camunda.bpm.engine.impl.migration.instance.parser with parameters of type MigrationPlan Constructor Description MigratingInstanceParseContext(MigratingInstanceParser parser, MigrationPlan migrationPlan, ExecutionEntity processInstance, ProcessDefinitionEntity targetProcessDefinition)
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration.validation.instruction
Fields in org.camunda.bpm.engine.impl.migration.validation.instruction declared as MigrationPlan Modifier and Type Field Description protected MigrationPlan
MigrationPlanValidationReportImpl. migrationPlan
Methods in org.camunda.bpm.engine.impl.migration.validation.instruction that return MigrationPlan Modifier and Type Method Description MigrationPlan
MigrationPlanValidationReportImpl. getMigrationPlan()
Constructors in org.camunda.bpm.engine.impl.migration.validation.instruction with parameters of type MigrationPlan Constructor Description MigrationPlanValidationReportImpl(MigrationPlan migrationPlan)
-
Uses of MigrationPlan in org.camunda.bpm.engine.migration
Methods in org.camunda.bpm.engine.migration that return MigrationPlan Modifier and Type Method Description MigrationPlan
MigrationPlanBuilder. build()
MigrationPlan
MigrationPlanValidationReport. getMigrationPlan()
-
Uses of MigrationPlan in org.camunda.bpm.engine.rest.dto.migration
Methods in org.camunda.bpm.engine.rest.dto.migration that return MigrationPlan Modifier and Type Method Description static MigrationPlan
MigrationPlanDto. toMigrationPlan(ProcessEngine processEngine, com.fasterxml.jackson.databind.ObjectMapper objectMapper, MigrationPlanDto migrationPlanDto)
Methods in org.camunda.bpm.engine.rest.dto.migration with parameters of type MigrationPlan Modifier and Type Method Description static MigrationPlanDto
MigrationPlanDto. from(MigrationPlan migrationPlan)
-
Uses of MigrationPlan in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl that return MigrationPlan Modifier and Type Method Description protected MigrationPlan
MigrationRestServiceImpl. createMigrationPlan(MigrationPlanDto migrationPlanDto)
-