Uses of Interface
org.camunda.bpm.engine.migration.MigrationPlan

Packages that use MigrationPlan
org.camunda.bpm.engine Public API of the camunda BPM engine.

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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, 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   
 

Uses of MigrationPlan in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine with parameters of type MigrationPlan
 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
 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
 MigrationPlan CreateMigrationPlanCmd.execute(CommandContext commandContext)
           
 

Methods in org.camunda.bpm.engine.impl.cmd with parameters of type MigrationPlan
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
 MigrationPlan MigrationPlanJsonConverter.toObject(JSONObject json)
           
 

Methods in org.camunda.bpm.engine.impl.json with parameters of type MigrationPlan
 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
 class MigrationPlanImpl
           
 

Fields in org.camunda.bpm.engine.impl.migration declared as MigrationPlan
protected  MigrationPlan MigrationPlanExecutionBuilderImpl.migrationPlan
           
 

Methods in org.camunda.bpm.engine.impl.migration that return MigrationPlan
 MigrationPlan MigrationPlanBuilderImpl.build()
           
 MigrationPlan MigrationPlanExecutionBuilderImpl.getMigrationPlan()
           
 

Methods in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlan
protected  void AbstractMigrationCmd.checkRequiredAuthorizations(CommandContext commandContext, MigrationPlan migrationPlan, Collection<String> processInstanceIds)
           
 Void MigrateProcessInstanceCmd.migrateProcessInstance(CommandContext commandContext, String processInstanceId, MigrationPlan migrationPlan, ProcessDefinitionEntity targetProcessDefinition)
           
 

Constructors in org.camunda.bpm.engine.impl.migration with parameters of type MigrationPlan
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
protected  MigrationPlan MigrationBatchConfiguration.migrationPlan
           
 

Methods in org.camunda.bpm.engine.impl.migration.batch that return MigrationPlan
 MigrationPlan MigrationBatchConfiguration.getMigrationPlan()
           
 

Methods in org.camunda.bpm.engine.impl.migration.batch with parameters of type MigrationPlan
protected  BatchEntity MigrateProcessInstanceBatchCmd.createBatch(CommandContext commandContext, MigrationPlan migrationPlan, Collection<String> processInstanceIds)
           
protected  MigrationBatchConfiguration MigrateProcessInstanceBatchCmd.createConfiguration(MigrationPlan migrationPlan, Collection<String> processInstanceIds)
           
protected  MigrationBatchConfiguration MigrationBatchJobHandler.createConfigurationForIds(MigrationPlan migrationPlan, List<String> idsForJob)
           
 void MigrationBatchConfiguration.setMigrationPlan(MigrationPlan migrationPlan)
           
 

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
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
MigratingInstanceParseContext(MigratingInstanceParser parser, MigrationPlan migrationPlan, ExecutionEntity processInstance, ProcessDefinitionImpl 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
protected  MigrationPlan MigrationPlanValidationReportImpl.migrationPlan
           
 

Methods in org.camunda.bpm.engine.impl.migration.validation.instruction that return MigrationPlan
 MigrationPlan MigrationPlanValidationReportImpl.getMigrationPlan()
           
 

Constructors in org.camunda.bpm.engine.impl.migration.validation.instruction with parameters of type MigrationPlan
MigrationPlanValidationReportImpl(MigrationPlan migrationPlan)
           
 

Uses of MigrationPlan in org.camunda.bpm.engine.migration
 

Methods in org.camunda.bpm.engine.migration that return MigrationPlan
 MigrationPlan MigrationPlanBuilder.build()
           
 MigrationPlan MigrationPlanValidationReport.getMigrationPlan()
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.