Package com.flowable.action.api.history
Interface HistoricActionInstanceQuery
-
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<HistoricActionInstanceQuery,HistoricActionInstance>
- All Known Implementing Classes:
HistoricActionInstanceQueryImpl
public interface HistoricActionInstanceQuery extends org.flowable.common.engine.api.query.Query<HistoricActionInstanceQuery,HistoricActionInstance>
Allows programmatic querying ofHistoricActionInstance
s.- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistoricActionInstanceQuery
actionDefinitionId(java.lang.String actionDefinitionId)
Only select action instances with the given action definition id.HistoricActionInstanceQuery
actionDefinitionIdLike(java.lang.String actionDefinitionIdLike)
Only select action instances with an action definition id like the given string.HistoricActionInstanceQuery
executedBy(java.lang.String executedBy)
Only select action instances with the given executed by value.HistoricActionInstanceQuery
executedByLike(java.lang.String executedByLike)
Only select action instances with an executed by like the given string.HistoricActionInstanceQuery
executionDate(java.util.Date executionDate)
Only select action instances executed on the given timeHistoricActionInstanceQuery
executionDateAfter(java.util.Date afterTime)
Only select action instances executed after the given timeHistoricActionInstanceQuery
executionDateBefore(java.util.Date beforeTime)
Only select action instances executed before the given timeHistoricActionInstanceQuery
formInstanceId(java.lang.String formInstanceId)
Only select action instances with the given form instance id.HistoricActionInstanceQuery
formKey(java.lang.String formKey)
Only select action instances with the given form key;HistoricActionInstanceQuery
id(java.lang.String id)
Only select action instances with the given id.HistoricActionInstanceQuery
ids(java.util.Set<java.lang.String> ids)
Only select action instances with the given ids.HistoricActionInstanceQuery
maxPriority(java.lang.Integer maxPriority)
Only select action instances with the given priority or lower.HistoricActionInstanceQuery
minPriority(java.lang.Integer minPriority)
Only select action instances with the given priority or higher.HistoricActionInstanceQuery
name(java.lang.String name)
Only select action instances with the given name.HistoricActionInstanceQuery
nameLike(java.lang.String nameLike)
Only select action instances with an name like the given string.HistoricActionInstanceQuery
orderByExecutionDate()
Order by execution date (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricActionInstanceQuery
orderByPriority()
Order by priority (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricActionInstanceQuery
orderByStartDate()
Order by start date (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricActionInstanceQuery
orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricActionInstanceQuery
priority(java.lang.Integer priority)
Only select action instances with the given priority.HistoricActionInstanceQuery
scopeDefinitionId(java.lang.String scopeDefinitionId)
Only select action instances with the given scope definition id.HistoricActionInstanceQuery
scopeId(java.lang.String scopeId)
Only select action instances with the given scope id.HistoricActionInstanceQuery
scopeType(java.lang.String scopeType)
Only select action instances with the given scope type.HistoricActionInstanceQuery
startDate(java.util.Date startDate)
Only select action instances started on the given timeHistoricActionInstanceQuery
startDateAfter(java.util.Date afterTime)
Only select action instances started after the given timeHistoricActionInstanceQuery
startDateBefore(java.util.Date beforeTime)
Only select action instances started before the given timeHistoricActionInstanceQuery
subScopeId(java.lang.String subScopeId)
Only select action instances with the given sub scope id.HistoricActionInstanceQuery
tenantId(java.lang.String tenantId)
Only select action instances that have the given tenant id.HistoricActionInstanceQuery
tenantIdLike(java.lang.String tenantIdLike)
Only select action instances with a tenant id like the given one.HistoricActionInstanceQuery
withoutTenantId()
Only select action instances that do not have a tenant id.
-
-
-
Method Detail
-
id
HistoricActionInstanceQuery id(java.lang.String id)
Only select action instances with the given id.
-
ids
HistoricActionInstanceQuery ids(java.util.Set<java.lang.String> ids)
Only select action instances with the given ids.
-
actionDefinitionId
HistoricActionInstanceQuery actionDefinitionId(java.lang.String actionDefinitionId)
Only select action instances with the given action definition id.
-
actionDefinitionIdLike
HistoricActionInstanceQuery actionDefinitionIdLike(java.lang.String actionDefinitionIdLike)
Only select action instances with an action definition id like the given string.
-
name
HistoricActionInstanceQuery name(java.lang.String name)
Only select action instances with the given name.
-
nameLike
HistoricActionInstanceQuery nameLike(java.lang.String nameLike)
Only select action instances with an name like the given string.
-
scopeId
HistoricActionInstanceQuery scopeId(java.lang.String scopeId)
Only select action instances with the given scope id.
-
subScopeId
HistoricActionInstanceQuery subScopeId(java.lang.String subScopeId)
Only select action instances with the given sub scope id.
-
scopeType
HistoricActionInstanceQuery scopeType(java.lang.String scopeType)
Only select action instances with the given scope type.
-
scopeDefinitionId
HistoricActionInstanceQuery scopeDefinitionId(java.lang.String scopeDefinitionId)
Only select action instances with the given scope definition id.
-
startDate
HistoricActionInstanceQuery startDate(java.util.Date startDate)
Only select action instances started on the given time
-
startDateBefore
HistoricActionInstanceQuery startDateBefore(java.util.Date beforeTime)
Only select action instances started before the given time
-
startDateAfter
HistoricActionInstanceQuery startDateAfter(java.util.Date afterTime)
Only select action instances started after the given time
-
executionDate
HistoricActionInstanceQuery executionDate(java.util.Date executionDate)
Only select action instances executed on the given time
-
executionDateBefore
HistoricActionInstanceQuery executionDateBefore(java.util.Date beforeTime)
Only select action instances executed before the given time
-
executionDateAfter
HistoricActionInstanceQuery executionDateAfter(java.util.Date afterTime)
Only select action instances executed after the given time
-
executedBy
HistoricActionInstanceQuery executedBy(java.lang.String executedBy)
Only select action instances with the given executed by value.
-
executedByLike
HistoricActionInstanceQuery executedByLike(java.lang.String executedByLike)
Only select action instances with an executed by like the given string.
-
formInstanceId
HistoricActionInstanceQuery formInstanceId(java.lang.String formInstanceId)
Only select action instances with the given form instance id.
-
formKey
HistoricActionInstanceQuery formKey(java.lang.String formKey)
Only select action instances with the given form key;
-
priority
HistoricActionInstanceQuery priority(java.lang.Integer priority)
Only select action instances with the given priority.
-
maxPriority
HistoricActionInstanceQuery maxPriority(java.lang.Integer maxPriority)
Only select action instances with the given priority or lower.
-
minPriority
HistoricActionInstanceQuery minPriority(java.lang.Integer minPriority)
Only select action instances with the given priority or higher.
-
tenantId
HistoricActionInstanceQuery tenantId(java.lang.String tenantId)
Only select action instances that have the given tenant id.
-
tenantIdLike
HistoricActionInstanceQuery tenantIdLike(java.lang.String 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()
).
-
-