Uses of Interface
org.camunda.bpm.engine.migration.MigrationPlan
Packages that use 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
Methods in org.camunda.bpm.engine with parameters of type MigrationPlanModifier 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
Methods in org.camunda.bpm.engine.impl with parameters of type MigrationPlan -
Uses of MigrationPlan in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return MigrationPlanMethods in org.camunda.bpm.engine.impl.cmd with parameters of type MigrationPlanModifier and TypeMethodDescriptionprotected 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 MigrationPlanModifier and TypeMethodDescriptionMigrationPlanJsonConverter.toObject
(com.google.gson.JsonObject json) Methods in org.camunda.bpm.engine.impl.json with parameters of type MigrationPlanModifier and TypeMethodDescriptioncom.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 MigrationPlanFields in org.camunda.bpm.engine.impl.migration declared as MigrationPlanModifier and TypeFieldDescriptionprotected MigrationPlan
MigrationPlanExecutionBuilderImpl.migrationPlan
Methods in org.camunda.bpm.engine.impl.migration that return MigrationPlanModifier and TypeMethodDescriptionMigrationPlanBuilderImpl.build()
MigrationPlanExecutionBuilderImpl.getMigrationPlan()
Methods in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlanModifier and TypeMethodDescriptionMigrateProcessInstanceCmd.migrateProcessInstance
(CommandContext commandContext, String processInstanceId, MigrationPlan migrationPlan, ProcessDefinitionEntity targetProcessDefinition, boolean skipJavaSerializationFormatCheck) Constructors in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlanModifierConstructorDescriptionMigrationPlanExecutionBuilderImpl
(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 MigrationPlanModifier and TypeFieldDescriptionprotected MigrationPlan
MigrationBatchConfiguration.migrationPlan
Methods in org.camunda.bpm.engine.impl.migration.batch that return MigrationPlanMethods in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlanModifier and TypeMethodDescriptionvoid
MigrationBatchConfiguration.setMigrationPlan
(MigrationPlan migrationPlan) Constructors in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlanModifierConstructorDescriptionMigrationBatchConfiguration
(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 MigrationPlanModifier and TypeMethodDescriptionprotected Map<String,
List<MigrationInstruction>> MigratingInstanceParseContext.organizeInstructionsBySourceScope
(MigrationPlan migrationPlan) MigratingInstanceParser.parse
(String processInstanceId, MigrationPlan migrationPlan, MigratingProcessInstanceValidationReportImpl processInstanceReport) Constructors in org.camunda.bpm.engine.impl.migration.instance.parser with parameters of type MigrationPlanModifierConstructorDescriptionMigratingInstanceParseContext
(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 MigrationPlanModifier and TypeFieldDescriptionprotected MigrationPlan
MigrationPlanValidationReportImpl.migrationPlan
Methods in org.camunda.bpm.engine.impl.migration.validation.instruction that return MigrationPlanConstructors in org.camunda.bpm.engine.impl.migration.validation.instruction with parameters of type MigrationPlan -
Uses of MigrationPlan in org.camunda.bpm.engine.migration
Methods in org.camunda.bpm.engine.migration that return MigrationPlanModifier and TypeMethodDescriptionMigrationPlanBuilder.build()
MigrationPlanValidationReport.getMigrationPlan()
-
Uses of MigrationPlan in org.camunda.bpm.engine.rest.dto.migration
Methods in org.camunda.bpm.engine.rest.dto.migration that return MigrationPlanModifier and TypeMethodDescriptionstatic 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 MigrationPlanModifier and TypeMethodDescriptionstatic 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 MigrationPlanModifier and TypeMethodDescriptionprotected MigrationPlan
MigrationRestServiceImpl.createMigrationPlan
(MigrationPlanDto migrationPlanDto)