Uses of Interface
org.camunda.bpm.engine.runtime.ProcessInstanceModificationBuilder
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.
Classes related to the
RuntimeService
.-
Uses of ProcessInstanceModificationBuilder in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionRuntimeService.createProcessInstanceModification
(String processInstanceId) Define a modification of a process instance in terms of activity cancellations and instantiations via a fluent builder. -
Uses of ProcessInstanceModificationBuilder in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionProcessInstanceModificationBuilderImpl.cancelActivityInstance
(String activityInstanceId) ProcessInstanceModificationBuilderImpl.cancelAllForActivity
(String activityId) ProcessInstanceModificationBuilderImpl.cancellationSourceExternal
(boolean external) ProcessInstanceModificationBuilderImpl.cancelTransitionInstance
(String transitionInstanceId) RuntimeServiceImpl.createProcessInstanceModification
(String processInstanceId) ProcessInstanceModificationBuilderImpl.setAnnotation
(String annotation) -
Uses of ProcessInstanceModificationBuilder in org.camunda.bpm.engine.rest.dto.runtime.modification
Modifier and TypeMethodDescriptionvoid
CancellationInstructionDto.applyTo
(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) void
ProcessInstanceModificationDto.applyTo
(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper objectMapper) abstract void
ProcessInstanceModificationInstructionDto.applyTo
(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) void
StartAfterInstructionDto.applyTo
(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) void
StartBeforeInstructionDto.applyTo
(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) void
StartTransitionInstructionDto.applyTo
(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) -
Uses of ProcessInstanceModificationBuilder in org.camunda.bpm.engine.runtime
Modifier and TypeMethodDescriptionProcessInstanceModificationBuilder.cancelActivityInstance
(String activityInstanceId) Submits the instruction:ProcessInstanceModificationBuilder.cancelAllForActivity
(String activityId) Submits the instruction:ProcessInstanceModificationBuilder.cancellationSourceExternal
(boolean external) A canceled process instance receives a termination state to indicate the source of the cancellation call.ProcessInstanceModificationBuilder.cancelTransitionInstance
(String transitionInstanceId) Submits the instruction:ProcessInstanceModificationBuilder.setAnnotation
(String annotation) Provides annotation for the current modification.