Package com.flowable.action.api.history
Interface HistoricActionInstanceQuery
- All Superinterfaces:
Query<HistoricActionInstanceQuery,
HistoricActionInstance>
- All Known Implementing Classes:
HistoricActionInstanceQueryImpl
public interface HistoricActionInstanceQuery
extends Query<HistoricActionInstanceQuery,HistoricActionInstance>
Allows programmatic querying of
HistoricActionInstance
s.- Author:
- Tijs Rademakers
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionactionDefinitionId
(String actionDefinitionId) Only select action instances with the given action definition id.actionDefinitionIdLike
(String actionDefinitionIdLike) Only select action instances with an action definition id like the given string.executedBy
(String executedBy) Only select action instances with the given executed by value.executedByLike
(String executedByLike) Only select action instances with an executed by like the given string.executionDate
(Date executionDate) Only select action instances executed on the given timeexecutionDateAfter
(Date afterTime) Only select action instances executed after the given timeexecutionDateBefore
(Date beforeTime) Only select action instances executed before the given timeformInstanceId
(String formInstanceId) Only select action instances with the given form instance id.Only select action instances with the given form key;Only select action instances with the given id.Only select action instances with the given ids.maxPriority
(Integer maxPriority) Only select action instances with the given priority or lower.minPriority
(Integer minPriority) Only select action instances with the given priority or higher.Only select action instances with the given name.Only select action instances with an name like the given string.Order by execution date (needs to be followed byQuery.asc()
orQuery.desc()
).Order by priority (needs to be followed byQuery.asc()
orQuery.desc()
).Order by start date (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).Only select action instances with the given priority.scopeDefinitionId
(String scopeDefinitionId) Only select action instances with the given scope definition id.Only select action instances with the given scope id.Only select action instances with the given scope type.Only select action instances started on the given timestartDateAfter
(Date afterTime) Only select action instances started after the given timestartDateBefore
(Date beforeTime) Only select action instances started before the given timesubScopeId
(String subScopeId) Only select action instances with the given sub scope id.Only select action instances that have the given tenant id.tenantIdLike
(String tenantIdLike) Only select action instances with a tenant id like the given one.Only select action instances that do not have a tenant id.
-
Method Details
-
id
Only select action instances with the given id. -
ids
Only select action instances with the given ids. -
actionDefinitionId
Only select action instances with the given action definition id. -
actionDefinitionIdLike
Only select action instances with an action definition id like the given string. -
name
Only select action instances with the given name. -
nameLike
Only select action instances with an name like the given string. -
scopeId
Only select action instances with the given scope id. -
subScopeId
Only select action instances with the given sub scope id. -
scopeType
Only select action instances with the given scope type. -
scopeDefinitionId
Only select action instances with the given scope definition id. -
startDate
Only select action instances started on the given time -
startDateBefore
Only select action instances started before the given time -
startDateAfter
Only select action instances started after the given time -
executionDate
Only select action instances executed on the given time -
executionDateBefore
Only select action instances executed before the given time -
executionDateAfter
Only select action instances executed after the given time -
executedBy
Only select action instances with the given executed by value. -
executedByLike
Only select action instances with an executed by like the given string. -
formInstanceId
Only select action instances with the given form instance id. -
formKey
Only select action instances with the given form key; -
priority
Only select action instances with the given priority. -
maxPriority
Only select action instances with the given priority or lower. -
minPriority
Only select action instances with the given priority or higher. -
tenantId
Only select action instances that have the given tenant id. -
tenantIdLike
Only select action instances with a tenant id like the given one. -
withoutTenantId
HistoricActionInstanceQuery withoutTenantId()Only select action instances that do not have a tenant id. -
orderByStartDate
HistoricActionInstanceQuery orderByStartDate()Order by start date (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByExecutionDate
HistoricActionInstanceQuery orderByExecutionDate()Order by execution date (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByPriority
HistoricActionInstanceQuery orderByPriority()Order by priority (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
HistoricActionInstanceQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).
-