Uses of Package
org.camunda.bpm.engine.runtime

Packages that use org.camunda.bpm.engine.runtime
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.delegate Interfaces used to include Java code in a process as the behavior of an activity or as a listener to process events with JavaDelegates. 
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.cfg.auth   
org.camunda.bpm.engine.impl.cmd   
org.camunda.bpm.engine.impl.cmmn   
org.camunda.bpm.engine.impl.cmmn.cmd   
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.core.variable.event   
org.camunda.bpm.engine.impl.history.producer   
org.camunda.bpm.engine.impl.incident   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.test   
org.camunda.bpm.engine.impl.variable.listener   
org.camunda.bpm.engine.runtime Classes related to the RuntimeService
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine
ActivityInstance
          An activity instance represents an instance of an activity.
CaseExecutionCommandBuilder
          A fluent builder for defining a command to execute for a case execution.
CaseExecutionQuery
           
CaseInstance
           
CaseInstanceBuilder
          A fluent builder to create a new case instance.
CaseInstanceQuery
           
EventSubscriptionQuery
          Allows querying of event subscriptions.
ExecutionQuery
          Allows programmatic querying of Executions.
IncidentQuery
           
JobQuery
          Allows programmatic querying of Jobs.
MessageCorrelationBuilder
          A fluent builder for defining message correlation
NativeExecutionQuery
          Allows querying of Executions via native (SQL) queries
NativeProcessInstanceQuery
          Allows querying of ProcessInstances via native (SQL) queries
ProcessInstance
          Represents one execution of a ProcessDefinition.
ProcessInstanceModificationBuilder
          A fluent builder to specify a modification of process instance state in terms of cancellation of activity instances and instantiations of activities and sequence flows.
ProcessInstanceQuery
          Allows programmatic querying of ProcessInstances.
ProcessInstantiationBuilder
           
VariableInstanceQuery
           
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.delegate
VariableInstance
          A VariableInstance represents a variable in the execution of a process instance.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl
ActivityInstance
          An activity instance represents an instance of an activity.
ActivityInstantiationBuilder
           
EventSubscription
          A message event subscription exists, if an Execution waits for an event like a message.
EventSubscriptionQuery
          Allows querying of event subscriptions.
Execution
          Represent a 'path of execution' in a process instance.
ExecutionQuery
          Allows programmatic querying of Executions.
Incident
          An Incident represents a failure in the execution of a process instance.
IncidentQuery
           
InstantiationBuilder
           
Job
          Represents one job (timer, message, etc.).
JobQuery
          Allows programmatic querying of Jobs.
MessageCorrelationBuilder
          A fluent builder for defining message correlation
NativeExecutionQuery
          Allows querying of Executions via native (SQL) queries
NativeProcessInstanceQuery
          Allows querying of ProcessInstances via native (SQL) queries
ProcessInstance
          Represents one execution of a ProcessDefinition.
ProcessInstanceModificationBuilder
          A fluent builder to specify a modification of process instance state in terms of cancellation of activity instances and instantiations of activities and sequence flows.
ProcessInstanceModificationInstantiationBuilder
           
ProcessInstanceQuery
          Allows programmatic querying of ProcessInstances.
ProcessInstantiationBuilder
           
VariableInstance
          A VariableInstance represents a variable in the execution of a process instance.
VariableInstanceQuery
           
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.cfg.auth
ProcessInstance
          Represents one execution of a ProcessDefinition.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.cmd
ActivityInstance
          An activity instance represents an instance of an activity.
ProcessInstance
          Represents one execution of a ProcessDefinition.
TransitionInstance
          A transition instance represents an execution token that has just completed a transition (sequence flow in BPMN) or is about to take an outgoing transition.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.cmmn
CaseExecutionCommandBuilder
          A fluent builder for defining a command to execute for a case execution.
CaseExecutionQuery
           
CaseInstance
           
CaseInstanceBuilder
          A fluent builder to create a new case instance.
CaseInstanceQuery
           
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.cmmn.cmd
CaseInstance
           
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.cmmn.entity.runtime
CaseExecution
          Represent a planned item in a case instance.
CaseExecutionQuery
           
CaseInstance
           
CaseInstanceQuery
           
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.core.variable.event
VariableInstance
          A VariableInstance represents a variable in the execution of a process instance.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.history.producer
Incident
          An Incident represents a failure in the execution of a process instance.
Job
          Represents one job (timer, message, etc.).
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.incident
Incident
          An Incident represents a failure in the execution of a process instance.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.persistence.entity
ActivityInstance
          An activity instance represents an instance of an activity.
EventSubscription
          A message event subscription exists, if an Execution waits for an event like a message.
Execution
          Represent a 'path of execution' in a process instance.
Incident
          An Incident represents a failure in the execution of a process instance.
Job
          Represents one job (timer, message, etc.).
ProcessElementInstance
          A ProcessElementInstance is an instance of a process construct such as an Activity (see ActivityInstance) or a transition (see TransitionInstance).
ProcessInstance
          Represents one execution of a ProcessDefinition.
TransitionInstance
          A transition instance represents an execution token that has just completed a transition (sequence flow in BPMN) or is about to take an outgoing transition.
VariableInstance
          A VariableInstance represents a variable in the execution of a process instance.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.test
ActivityInstance
          An activity instance represents an instance of an activity.
CaseExecution
          Represent a planned item in a case instance.
CaseInstance
           
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.impl.variable.listener
VariableInstance
          A VariableInstance represents a variable in the execution of a process instance.
 

Classes in org.camunda.bpm.engine.runtime used by org.camunda.bpm.engine.runtime
ActivityInstance
          An activity instance represents an instance of an activity.
ActivityInstantiationBuilder
           
CaseExecution
          Represent a planned item in a case instance.
CaseExecutionCommandBuilder
          A fluent builder for defining a command to execute for a case execution.
CaseExecutionQuery
           
CaseInstance
           
CaseInstanceBuilder
          A fluent builder to create a new case instance.
CaseInstanceQuery
           
EventSubscriptionQuery
          Allows querying of event subscriptions.
Execution
          Represent a 'path of execution' in a process instance.
ExecutionQuery
          Allows programmatic querying of Executions.
IncidentQuery
           
InstantiationBuilder
           
JobQuery
          Allows programmatic querying of Jobs.
MessageCorrelationBuilder
          A fluent builder for defining message correlation
ProcessElementInstance
          A ProcessElementInstance is an instance of a process construct such as an Activity (see ActivityInstance) or a transition (see TransitionInstance).
ProcessInstance
          Represents one execution of a ProcessDefinition.
ProcessInstanceModificationBuilder
          A fluent builder to specify a modification of process instance state in terms of cancellation of activity instances and instantiations of activities and sequence flows.
ProcessInstanceModificationInstantiationBuilder
           
ProcessInstanceQuery
          Allows programmatic querying of ProcessInstances.
ProcessInstantiationBuilder
           
TransitionInstance
          A transition instance represents an execution token that has just completed a transition (sequence flow in BPMN) or is about to take an outgoing transition.
VariableInstanceQuery
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.