Uses of Interface
org.camunda.bpm.engine.migration.MigrationPlan
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of MigrationPlan in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionRuntimeService.newMigration
(MigrationPlan migrationPlan) Executes a migration plan for a given list of process instances. -
Uses of MigrationPlan in org.camunda.bpm.engine.impl
-
Uses of MigrationPlan in org.camunda.bpm.engine.impl.cmd
Modifier and TypeMethodDescriptionprotected ValidatingMigrationInstructions
CreateMigrationPlanCmd.wrapMigrationInstructions
(MigrationPlan migrationPlan, ProcessDefinitionImpl sourceProcessDefinition, ProcessDefinitionImpl targetProcessDefinition, MigrationPlanValidationReportImpl planReport) -
Uses of MigrationPlan in org.camunda.bpm.engine.impl.json
Modifier and TypeMethodDescriptionMigrationPlanJsonConverter.toObject
(com.google.gson.JsonObject json) Modifier and TypeMethodDescriptioncom.google.gson.JsonObject
MigrationPlanJsonConverter.toJsonObject
(MigrationPlan migrationPlan) -
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration
Modifier and TypeFieldDescriptionprotected MigrationPlan
MigrationPlanExecutionBuilderImpl.migrationPlan
Modifier and TypeMethodDescriptionMigrationPlanBuilderImpl.build()
MigrationPlanExecutionBuilderImpl.getMigrationPlan()
Modifier and TypeMethodDescriptionMigrateProcessInstanceCmd.migrateProcessInstance
(CommandContext commandContext, String processInstanceId, MigrationPlan migrationPlan, ProcessDefinitionEntity targetProcessDefinition, boolean skipJavaSerializationFormatCheck) ModifierConstructorDescriptionMigrationPlanExecutionBuilderImpl
(CommandExecutor commandExecutor, MigrationPlan migrationPlan) -
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration.batch
Modifier and TypeFieldDescriptionprotected MigrationPlan
MigrationBatchConfiguration.migrationPlan
Modifier and TypeMethodDescriptionvoid
MigrationBatchConfiguration.setMigrationPlan
(MigrationPlan migrationPlan) ModifierConstructorDescriptionMigrationBatchConfiguration
(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
Modifier and TypeMethodDescriptionprotected Map<String,
List<MigrationInstruction>> MigratingInstanceParseContext.organizeInstructionsBySourceScope
(MigrationPlan migrationPlan) MigratingInstanceParser.parse
(String processInstanceId, MigrationPlan migrationPlan, MigratingProcessInstanceValidationReportImpl processInstanceReport) ModifierConstructorDescriptionMigratingInstanceParseContext
(MigratingInstanceParser parser, MigrationPlan migrationPlan, ExecutionEntity processInstance, ProcessDefinitionEntity targetProcessDefinition) -
Uses of MigrationPlan in org.camunda.bpm.engine.impl.migration.validation.instruction
Modifier and TypeFieldDescriptionprotected MigrationPlan
MigrationPlanValidationReportImpl.migrationPlan
-
Uses of MigrationPlan in org.camunda.bpm.engine.migration
Modifier and TypeMethodDescriptionMigrationPlanBuilder.build()
MigrationPlanValidationReport.getMigrationPlan()
-
Uses of MigrationPlan in org.camunda.bpm.engine.rest.dto.migration
Modifier and TypeMethodDescriptionstatic MigrationPlan
MigrationPlanDto.toMigrationPlan
(ProcessEngine processEngine, com.fasterxml.jackson.databind.ObjectMapper objectMapper, MigrationPlanDto migrationPlanDto) Modifier and TypeMethodDescriptionstatic MigrationPlanDto
MigrationPlanDto.from
(MigrationPlan migrationPlan) -
Uses of MigrationPlan in org.camunda.bpm.engine.rest.impl
Modifier and TypeMethodDescriptionprotected MigrationPlan
MigrationRestServiceImpl.createMigrationPlan
(MigrationPlanDto migrationPlanDto)