Uses of Interface
org.camunda.bpm.engine.runtime.ProcessInstance
Packages that use ProcessInstance
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 ProcessInstance in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return ProcessInstanceModifier and TypeMethodDescriptionRuntimeService.startProcessInstanceById
(String processDefinitionId) Starts a new process instance in the exactly specified version of the process definition with the given id.RuntimeService.startProcessInstanceById
(String processDefinitionId, String businessKey) Starts a new process instance in the exactly specified version of the process definition with the given id.RuntimeService.startProcessInstanceById
(String processDefinitionId, String businessKey, String caseInstanceId) Starts a new process instance in the exactly specified version of the process definition with the given id.RuntimeService.startProcessInstanceById
(String processDefinitionId, String businessKey, String caseInstanceId, Map<String, Object> variables) Starts a new process instance in the exactly specified version of the process definition with the given id.RuntimeService.startProcessInstanceById
(String processDefinitionId, String businessKey, Map<String, Object> variables) Starts a new process instance in the exactly specified version of the process definition with the given id.RuntimeService.startProcessInstanceById
(String processDefinitionId, Map<String, Object> variables) Starts a new process instance in the exactly specified version of the process definition with the given id.RuntimeService.startProcessInstanceByKey
(String processDefinitionKey) Starts a new process instance in the latest version of the process definition with the given key.RuntimeService.startProcessInstanceByKey
(String processDefinitionKey, String businessKey) Starts a new process instance in the latest version of the process definition with the given key.RuntimeService.startProcessInstanceByKey
(String processDefinitionKey, String businessKey, String caseInstanceId) Starts a new process instance in the latest version of the process definition with the given key.RuntimeService.startProcessInstanceByKey
(String processDefinitionKey, String businessKey, String caseInstanceId, Map<String, Object> variables) Starts a new process instance in the latest version of the process definition with the given key.RuntimeService.startProcessInstanceByKey
(String processDefinitionKey, String businessKey, Map<String, Object> variables) Starts a new process instance in the latest version of the process definition with the given key.RuntimeService.startProcessInstanceByKey
(String processDefinitionKey, Map<String, Object> variables) Starts a new process instance in the latest version of the process definition with the given keyRuntimeService.startProcessInstanceByMessage
(String messageName) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessage
(String messageName, String businessKey) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessage
(String messageName, String businessKey, Map<String, Object> processVariables) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessage
(String messageName, Map<String, Object> processVariables) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId, String businessKey) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId, String businessKey, Map<String, Object> processVariables) Signals the process engine that a message is received and starts a newProcessInstance
.RuntimeService.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId, Map<String, Object> processVariables) Signals the process engine that a message is received and starts a newProcessInstance
.FormService.submitStartForm
(String processDefinitionId, String businessKey, Map<String, Object> properties) Start a new process instance with the user data that was entered as properties in a start form.FormService.submitStartForm
(String processDefinitionId, Map<String, Object> properties) Start a new process instance with the user data that was entered as properties in a start form.FormService.submitStartFormData
(String processDefinitionId, String businessKey, Map<String, String> properties) Deprecated.FormService.submitStartFormData
(String processDefinitionId, Map<String, String> properties) Deprecated. -
Uses of ProcessInstance in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return ProcessInstanceModifier and TypeMethodDescriptionMessageCorrelationBuilderImpl.correlateStartMessage()
ProcessInstantiationBuilderImpl.execute()
ProcessInstantiationBuilderImpl.execute
(boolean skipCustomListeners, boolean skipIoMappings) RuntimeServiceImpl.startProcessInstanceById
(String processDefinitionId) RuntimeServiceImpl.startProcessInstanceById
(String processDefinitionId, String businessKey) RuntimeServiceImpl.startProcessInstanceById
(String processDefinitionId, String businessKey, String caseInstanceId) RuntimeServiceImpl.startProcessInstanceById
(String processDefinitionId, String businessKey, String caseInstanceId, Map<String, Object> variables) RuntimeServiceImpl.startProcessInstanceById
(String processDefinitionId, String businessKey, Map<String, Object> variables) RuntimeServiceImpl.startProcessInstanceById
(String processDefinitionId, Map<String, Object> variables) RuntimeServiceImpl.startProcessInstanceByKey
(String processDefinitionKey) RuntimeServiceImpl.startProcessInstanceByKey
(String processDefinitionKey, String businessKey) RuntimeServiceImpl.startProcessInstanceByKey
(String processDefinitionKey, String businessKey, String caseInstanceId) RuntimeServiceImpl.startProcessInstanceByKey
(String processDefinitionKey, String businessKey, String caseInstanceId, Map<String, Object> variables) RuntimeServiceImpl.startProcessInstanceByKey
(String processDefinitionKey, String businessKey, Map<String, Object> variables) RuntimeServiceImpl.startProcessInstanceByKey
(String processDefinitionKey, Map<String, Object> variables) RuntimeServiceImpl.startProcessInstanceByMessage
(String messageName) RuntimeServiceImpl.startProcessInstanceByMessage
(String messageName, String businessKey) RuntimeServiceImpl.startProcessInstanceByMessage
(String messageName, String businessKey, Map<String, Object> processVariables) RuntimeServiceImpl.startProcessInstanceByMessage
(String messageName, Map<String, Object> processVariables) RuntimeServiceImpl.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId) RuntimeServiceImpl.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId, String businessKey) RuntimeServiceImpl.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId, String businessKey, Map<String, Object> processVariables) RuntimeServiceImpl.startProcessInstanceByMessageAndProcessDefinitionId
(String messageName, String processDefinitionId, Map<String, Object> processVariables) FormServiceImpl.submitStartForm
(String processDefinitionId, String businessKey, Map<String, Object> properties) FormServiceImpl.submitStartForm
(String processDefinitionId, Map<String, Object> properties) FormServiceImpl.submitStartFormData
(String processDefinitionId, String businessKey, Map<String, String> properties) FormServiceImpl.submitStartFormData
(String processDefinitionId, Map<String, String> properties) Methods in org.camunda.bpm.engine.impl that return types with arguments of type ProcessInstanceModifier and TypeMethodDescriptionConditionEvaluationBuilderImpl.evaluateStartConditions()
NativeProcessInstanceQueryImpl.executeList
(CommandContext commandContext, Map<String, Object> parameterMap, int firstResult, int maxResults) ProcessInstanceQueryImpl.executeList
(CommandContext commandContext, Page page) -
Uses of ProcessInstance in org.camunda.bpm.engine.impl.cfg.auth
Methods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type ProcessInstanceModifier and TypeMethodDescriptionDefaultAuthorizationProvider.newProcessInstance
(ProcessInstance processInstance) ResourceAuthorizationProvider.newProcessInstance
(ProcessInstance processInstance) Invoked whenever a new process instance is started -
Uses of ProcessInstance in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return ProcessInstanceModifier and TypeMethodDescriptionSubmitStartFormCmd.execute
(CommandContext commandContext) protected ProcessInstance
AbstractCorrelateMessageCmd.instantiateProcess
(CommandContext commandContext, CorrelationHandlerResult correlationResult) protected ProcessInstance
EvaluateStartConditionCmd.instantiateProcess
(CommandContext commandContext, ConditionHandlerResult result) Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type ProcessInstanceModifier and TypeMethodDescriptionEvaluateStartConditionCmd.execute
(CommandContext commandContext) protected List<ProcessInstance>
AbstractSetProcessInstanceStateCmd.obtainProcessInstances
(CommandContext commandContext) Method parameters in org.camunda.bpm.engine.impl.cmd with type arguments of type ProcessInstanceModifier and TypeMethodDescriptionvoid
AbstractDeleteProcessInstanceCmd.triggerHistoryEvent
(List<ProcessInstance> subProcesslist) -
Uses of ProcessInstance in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement ProcessInstanceMethods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type ProcessInstanceModifier and TypeMethodDescriptionExecutionManager.findProcessInstanceByNativeQuery
(Map<String, Object> parameterMap, int firstResult, int maxResults) ExecutionManager.findProcessInstancesByQueryCriteria
(ProcessInstanceQueryImpl processInstanceQuery, Page page) -
Uses of ProcessInstance in org.camunda.bpm.engine.impl.runtime
Fields in org.camunda.bpm.engine.impl.runtime declared as ProcessInstanceModifier and TypeFieldDescriptionprotected ProcessInstance
MessageCorrelationResultImpl.processInstance
Methods in org.camunda.bpm.engine.impl.runtime that return ProcessInstanceMethods in org.camunda.bpm.engine.impl.runtime with parameters of type ProcessInstanceModifier and TypeMethodDescriptionvoid
MessageCorrelationResultImpl.setProcessInstance
(ProcessInstance processInstance) -
Uses of ProcessInstance in org.camunda.bpm.engine.runtime
Subinterfaces of ProcessInstance in org.camunda.bpm.engine.runtimeModifier and TypeInterfaceDescriptioninterface
Represents a process instance with the corresponding latest variables.Methods in org.camunda.bpm.engine.runtime that return ProcessInstanceModifier and TypeMethodDescriptionMessageCorrelationBuilder.correlateStartMessage()
Executes the message correlation.ProcessInstantiationBuilder.execute()
Start the process instance.ProcessInstantiationBuilder.execute
(boolean skipCustomListeners, boolean skipIoMappings) Start the process instance.MessageCorrelationResult.getProcessInstance()
Returns the process instance id on which the message was correlated to.Methods in org.camunda.bpm.engine.runtime that return types with arguments of type ProcessInstance
FormService.submitStartForm(String, String, Map)