Package | Description |
---|---|
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 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. |
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 |
Modifier and Type | Method and Description |
---|---|
MigrationPlanExecutionBuilder |
RuntimeService.newMigration(MigrationPlan migrationPlan)
Executes a migration plan for a given list of process instances.
|
Modifier and Type | Method and Description |
---|---|
MigrationPlanExecutionBuilder |
RuntimeServiceImpl.newMigration(MigrationPlan migrationPlan) |
Modifier and Type | Method and Description |
---|---|
MigrationPlan |
CreateMigrationPlanCmd.execute(CommandContext commandContext) |
Modifier and Type | Method and Description |
---|---|
protected ValidatingMigrationInstructions |
CreateMigrationPlanCmd.wrapMigrationInstructions(MigrationPlan migrationPlan,
ProcessDefinitionImpl sourceProcessDefinition,
ProcessDefinitionImpl targetProcessDefinition,
MigrationPlanValidationReportImpl planReport) |
Modifier and Type | Method and Description |
---|---|
MigrationPlan |
MigrationPlanJsonConverter.toObject(com.google.gson.JsonObject json) |
Modifier and Type | Method and Description |
---|---|
com.google.gson.JsonObject |
MigrationPlanJsonConverter.toJsonObject(MigrationPlan migrationPlan) |
Modifier and Type | Class and Description |
---|---|
class |
MigrationPlanImpl |
Modifier and Type | Field and Description |
---|---|
protected MigrationPlan |
MigrationPlanExecutionBuilderImpl.migrationPlan |
Modifier and Type | Method and Description |
---|---|
MigrationPlan |
MigrationPlanBuilderImpl.build() |
MigrationPlan |
MigrationPlanExecutionBuilderImpl.getMigrationPlan() |
Modifier and Type | Method and Description |
---|---|
Void |
MigrateProcessInstanceCmd.migrateProcessInstance(CommandContext commandContext,
String processInstanceId,
MigrationPlan migrationPlan,
ProcessDefinitionEntity targetProcessDefinition) |
Constructor and Description |
---|
MigrationPlanExecutionBuilderImpl(CommandExecutor commandExecutor,
MigrationPlan migrationPlan) |
Modifier and Type | Field and Description |
---|---|
protected MigrationPlan |
MigrationBatchConfiguration.migrationPlan |
Modifier and Type | Method and Description |
---|---|
MigrationPlan |
MigrationBatchConfiguration.getMigrationPlan() |
Modifier and Type | Method and Description |
---|---|
protected BatchEntity |
MigrateProcessInstanceBatchCmd.createBatch(CommandContext commandContext,
MigrationPlan migrationPlan,
Collection<String> processInstanceIds,
ProcessDefinitionEntity sourceProcessDefinition) |
void |
MigrationBatchConfiguration.setMigrationPlan(MigrationPlan migrationPlan) |
Constructor and Description |
---|
MigrationBatchConfiguration(List<String> ids,
MigrationPlan migrationPlan,
boolean isSkipCustomListeners,
boolean isSkipIoMappings) |
Modifier and Type | Method and Description |
---|---|
protected Map<String,List<MigrationInstruction>> |
MigratingInstanceParseContext.organizeInstructionsBySourceScope(MigrationPlan migrationPlan) |
MigratingProcessInstance |
MigratingInstanceParser.parse(String processInstanceId,
MigrationPlan migrationPlan,
MigratingProcessInstanceValidationReportImpl processInstanceReport) |
Constructor and Description |
---|
MigratingInstanceParseContext(MigratingInstanceParser parser,
MigrationPlan migrationPlan,
ExecutionEntity processInstance,
ProcessDefinitionEntity targetProcessDefinition) |
Modifier and Type | Field and Description |
---|---|
protected MigrationPlan |
MigrationPlanValidationReportImpl.migrationPlan |
Modifier and Type | Method and Description |
---|---|
MigrationPlan |
MigrationPlanValidationReportImpl.getMigrationPlan() |
Constructor and Description |
---|
MigrationPlanValidationReportImpl(MigrationPlan migrationPlan) |
Modifier and Type | Method and Description |
---|---|
MigrationPlan |
MigrationPlanBuilder.build() |
MigrationPlan |
MigrationPlanValidationReport.getMigrationPlan() |
Modifier and Type | Method and Description |
---|---|
static MigrationPlan |
MigrationPlanDto.toMigrationPlan(ProcessEngine processEngine,
MigrationPlanDto migrationPlanDto) |
Modifier and Type | Method and Description |
---|---|
static MigrationPlanDto |
MigrationPlanDto.from(MigrationPlan migrationPlan) |
Modifier and Type | Method and Description |
---|---|
protected MigrationPlan |
MigrationRestServiceImpl.createMigrationPlan(MigrationPlanDto migrationPlanDto) |
Copyright © 2022. All rights reserved.