Uses of Interface
org.camunda.bpm.engine.runtime.ProcessInstanceModificationBuilder
Packages that use 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 DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups 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
Methods in org.camunda.bpm.engine that return ProcessInstanceModificationBuilderModifier 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
Classes in org.camunda.bpm.engine.impl that implement ProcessInstanceModificationBuilderMethods in org.camunda.bpm.engine.impl that return ProcessInstanceModificationBuilderModifier 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
Methods in org.camunda.bpm.engine.rest.dto.runtime.modification with parameters of type ProcessInstanceModificationBuilderModifier and TypeMethodDescriptionvoidCancellationInstructionDto.applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) voidProcessInstanceModificationDto.applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper objectMapper) abstract voidProcessInstanceModificationInstructionDto.applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) voidStartAfterInstructionDto.applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) voidStartBeforeInstructionDto.applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) voidStartTransitionInstructionDto.applyTo(ProcessInstanceModificationBuilder builder, ProcessEngine engine, com.fasterxml.jackson.databind.ObjectMapper mapper) -
Uses of ProcessInstanceModificationBuilder in org.camunda.bpm.engine.runtime
Subinterfaces of ProcessInstanceModificationBuilder in org.camunda.bpm.engine.runtimeMethods in org.camunda.bpm.engine.runtime that return ProcessInstanceModificationBuilderModifier 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.