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 aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups 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 MigrationPlanExecutionBuilderRuntimeService. 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 MigrationPlanExecutionBuilderRuntimeServiceImpl. 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 MigrationPlanCreateMigrationPlanCmd. execute(CommandContext commandContext)Methods in org.camunda.bpm.engine.impl.cmd with parameters of type MigrationPlan Modifier and Type Method Description protected ValidatingMigrationInstructionsCreateMigrationPlanCmd. 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 MigrationPlanMigrationPlanJsonConverter. 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.JsonObjectMigrationPlanJsonConverter. 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 classMigrationPlanImplFields in org.camunda.bpm.engine.impl.migration declared as MigrationPlan Modifier and Type Field Description protected MigrationPlanMigrationPlanExecutionBuilderImpl. migrationPlanMethods in org.camunda.bpm.engine.impl.migration that return MigrationPlan Modifier and Type Method Description MigrationPlanMigrationPlanBuilderImpl. build()MigrationPlanMigrationPlanExecutionBuilderImpl. getMigrationPlan()Methods in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlan Modifier and Type Method Description java.lang.VoidMigrateProcessInstanceCmd. migrateProcessInstance(CommandContext commandContext, java.lang.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 MigrationPlanMigrationBatchConfiguration. migrationPlanMethods in org.camunda.bpm.engine.impl.migration.batch that return MigrationPlan Modifier and Type Method Description MigrationPlanMigrationBatchConfiguration. getMigrationPlan()Methods in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlan Modifier and Type Method Description voidMigrationBatchConfiguration. setMigrationPlan(MigrationPlan migrationPlan)Constructors in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlan Constructor Description MigrationBatchConfiguration(java.util.List<java.lang.String> ids, DeploymentMappings mappings, MigrationPlan migrationPlan, boolean isSkipCustomListeners, boolean isSkipIoMappings)MigrationBatchConfiguration(java.util.List<java.lang.String> ids, DeploymentMappings mappings, MigrationPlan migrationPlan, boolean isSkipCustomListeners, boolean isSkipIoMappings, java.lang.String batchId)MigrationBatchConfiguration(java.util.List<java.lang.String> ids, MigrationPlan migrationPlan, boolean isSkipCustomListeners, boolean isSkipIoMappings, java.lang.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 java.util.Map<java.lang.String,java.util.List<MigrationInstruction>>MigratingInstanceParseContext. organizeInstructionsBySourceScope(MigrationPlan migrationPlan)MigratingProcessInstanceMigratingInstanceParser. parse(java.lang.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 MigrationPlanMigrationPlanValidationReportImpl. migrationPlanMethods in org.camunda.bpm.engine.impl.migration.validation.instruction that return MigrationPlan Modifier and Type Method Description MigrationPlanMigrationPlanValidationReportImpl. 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 MigrationPlanMigrationPlanBuilder. build()MigrationPlanMigrationPlanValidationReport. 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 MigrationPlanMigrationPlanDto. 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 MigrationPlanDtoMigrationPlanDto. 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 MigrationPlanMigrationRestServiceImpl. createMigrationPlan(MigrationPlanDto migrationPlanDto)
-