Package org.flowable.variable.service
Interface InternalVariableInstanceQuery
- All Known Implementing Classes:
InternalVariableInstanceQueryImpl
public interface InternalVariableInstanceQuery
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptionexecutionId
(String executionId) Query variables with the given execution idexecutionIds
(Collection<String> executionIds) Query variables with the given execution idsQuery variables with the given id.list()
Query variables with the given namenames
(Collection<String> names) Query variables with the given nameprocessInstanceId
(String processInstanceId) Query variables with the given process instance idQuery variables with the given scope id.scopeIds
(Collection<String> scopeIds) Query variables with the given scope ids.Query variables with the given scope typescopeTypes
(Collection<String> scopeTypes) Query variables with the given scope typessubScopeId
(String subScopeId) Query variables with the given sub scope id.subScopeIds
(Collection<String> subScopeIds) Query variables with the given sub scope ids.Query variables with the given task idtaskIds
(Collection<String> taskIds) Query variables with the given task idsQuery variables without a sub scope id.Query variables without a task id.
-
Method Details
-
id
Query variables with the given id. -
taskId
Query variables with the given task id -
taskIds
Query variables with the given task ids -
processInstanceId
Query variables with the given process instance id -
executionId
Query variables with the given execution id -
executionIds
Query variables with the given execution ids -
withoutTaskId
InternalVariableInstanceQuery withoutTaskId()Query variables without a task id. Cannot be used together withtaskId(String)
ortaskIds(Collection)
. -
scopeIds
Query variables with the given scope ids. -
scopeId
Query variables with the given scope id. -
subScopeId
Query variables with the given sub scope id. Cannot be used together withwithoutSubScopeId()
-
subScopeIds
Query variables with the given sub scope ids. Cannot be used together withwithoutSubScopeId()
-
withoutSubScopeId
InternalVariableInstanceQuery withoutSubScopeId()Query variables without a sub scope id. Cannot be used together withsubScopeId(String)
-
scopeType
Query variables with the given scope type -
scopeTypes
Query variables with the given scope types -
name
Query variables with the given name -
names
Query variables with the given name -
list
List<VariableInstanceEntity> list() -
singleResult
VariableInstanceEntity singleResult()
-