Uses of Interface
org.flowable.engine.runtime.ActivityInstanceQuery
-
Packages that use ActivityInstanceQuery Package Description org.flowable.engine Public API of the Flowable engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments.
RuntimeService: For starting and searchingProcessInstances.
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 administration and maintenance operations, which have no relation to the runtime exection 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.flowable.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.flowable.engine.runtime Classes related to theRuntimeService. -
-
Uses of ActivityInstanceQuery in org.flowable.engine
Methods in org.flowable.engine that return ActivityInstanceQuery Modifier and Type Method Description ActivityInstanceQueryRuntimeService. createActivityInstanceQuery()Creates a newActivityInstanceQueryinstance, that can be used to query activities in the currently running process instances. -
Uses of ActivityInstanceQuery in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement ActivityInstanceQuery Modifier and Type Class Description classActivityInstanceQueryImplMethods in org.flowable.engine.impl that return ActivityInstanceQuery Modifier and Type Method Description ActivityInstanceQueryActivityInstanceQueryImpl. deleteReason(String deleteReason)ActivityInstanceQueryActivityInstanceQueryImpl. deleteReasonLike(String deleteReasonLike)ActivityInstanceQueryActivityInstanceQueryImpl. orderByActivityId() -
Uses of ActivityInstanceQuery in org.flowable.engine.runtime
Methods in org.flowable.engine.runtime that return ActivityInstanceQuery Modifier and Type Method Description ActivityInstanceQueryActivityInstanceQuery. activityId(String activityId)Only select activity instances for the given activity (id from BPMN 2.0 XML)ActivityInstanceQueryActivityInstanceQuery. activityInstanceId(String activityInstanceId)Only select activity instances with the given id (primary key within history tables).ActivityInstanceQueryActivityInstanceQuery. activityName(String activityName)Only select activity instances for activities with the given nameActivityInstanceQueryActivityInstanceQuery. activityTenantId(String tenantId)Only select activity instances that have the given tenant id.ActivityInstanceQueryActivityInstanceQuery. activityTenantIdLike(String tenantIdLike)Only select activity instances with a tenant id like the given one.ActivityInstanceQueryActivityInstanceQuery. activityType(String activityType)Only select activity instances for activities with the given activity typeActivityInstanceQueryActivityInstanceQuery. activityWithoutTenantId()Only select activity instances that do not have a tenant id.ActivityInstanceQueryActivityInstanceQuery. deleteReason(String deleteReason)Only select activity instances with a specific delete reason.ActivityInstanceQueryActivityInstanceQuery. deleteReasonLike(String deleteReasonLike)Only select activity instances with a delete reason that matches the provided parameter.ActivityInstanceQueryActivityInstanceQuery. executionId(String executionId)Only select activity instances for the given executionActivityInstanceQueryActivityInstanceQuery. finished()Only select activity instances that are finished.ActivityInstanceQueryActivityInstanceQuery. orderByActivityId()Order by activityId (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByActivityInstanceDuration()Order by duration (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByActivityInstanceEndTime()Order by end (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByActivityInstanceId()Order by id (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByActivityInstanceStartTime()Order by start (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByActivityName()Order by activityName (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByActivityType()Order by activityType (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByExecutionId()Order by executionId (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByProcessDefinitionId()Order by processDefinitionId (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByProcessInstanceId()Order by processInstanceId (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).ActivityInstanceQueryActivityInstanceQuery. processDefinitionId(String processDefinitionId)Only select activity instances for the given process definitionActivityInstanceQueryActivityInstanceQuery. processInstanceId(String processInstanceId)Only select activity instances with the given process instance.ActivityInstanceQueryActivityInstanceQuery. taskAssignee(String userId)Only select activity instances for userTask activities assigned to the given userActivityInstanceQueryActivityInstanceQuery. unfinished()Only select activity instances that are not finished yet.
-