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 ofHistoricActionInstances.- Author:
- Tijs Rademakers
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistoricActionInstanceQueryactionDefinitionId(String actionDefinitionId)Only select action instances with the given action definition id.HistoricActionInstanceQueryactionDefinitionIdLike(String actionDefinitionIdLike)Only select action instances with an action definition id like the given string.HistoricActionInstanceQueryexecutedBy(String executedBy)Only select action instances with the given executed by value.HistoricActionInstanceQueryexecutedByLike(String executedByLike)Only select action instances with an executed by like the given string.HistoricActionInstanceQueryexecutionDate(Date executionDate)Only select action instances executed on the given timeHistoricActionInstanceQueryexecutionDateAfter(Date afterTime)Only select action instances executed after the given timeHistoricActionInstanceQueryexecutionDateBefore(Date beforeTime)Only select action instances executed before the given timeHistoricActionInstanceQueryformInstanceId(String formInstanceId)Only select action instances with the given form instance id.HistoricActionInstanceQueryformKey(String formKey)Only select action instances with the given form key;HistoricActionInstanceQueryid(String id)Only select action instances with the given id.HistoricActionInstanceQueryids(Set<String> ids)Only select action instances with the given ids.HistoricActionInstanceQuerymaxPriority(Integer maxPriority)Only select action instances with the given priority or lower.HistoricActionInstanceQueryminPriority(Integer minPriority)Only select action instances with the given priority or higher.HistoricActionInstanceQueryname(String name)Only select action instances with the given name.HistoricActionInstanceQuerynameLike(String nameLike)Only select action instances with an name like the given string.HistoricActionInstanceQueryorderByExecutionDate()Order by execution date (needs to be followed byQuery.asc()orQuery.desc()).HistoricActionInstanceQueryorderByPriority()Order by priority (needs to be followed byQuery.asc()orQuery.desc()).HistoricActionInstanceQueryorderByStartDate()Order by start date (needs to be followed byQuery.asc()orQuery.desc()).HistoricActionInstanceQueryorderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).HistoricActionInstanceQuerypriority(Integer priority)Only select action instances with the given priority.HistoricActionInstanceQueryscopeDefinitionId(String scopeDefinitionId)Only select action instances with the given scope definition id.HistoricActionInstanceQueryscopeId(String scopeId)Only select action instances with the given scope id.HistoricActionInstanceQueryscopeType(String scopeType)Only select action instances with the given scope type.HistoricActionInstanceQuerystartDate(Date startDate)Only select action instances started on the given timeHistoricActionInstanceQuerystartDateAfter(Date afterTime)Only select action instances started after the given timeHistoricActionInstanceQuerystartDateBefore(Date beforeTime)Only select action instances started before the given timeHistoricActionInstanceQuerysubScopeId(String subScopeId)Only select action instances with the given sub scope id.HistoricActionInstanceQuerytenantId(String tenantId)Only select action instances that have the given tenant id.HistoricActionInstanceQuerytenantIdLike(String tenantIdLike)Only select action instances with a tenant id like the given one.HistoricActionInstanceQuerywithoutTenantId()Only select action instances that do not have a tenant id.
-
-
-
Method Detail
-
id
HistoricActionInstanceQuery id(String id)
Only select action instances with the given id.
-
ids
HistoricActionInstanceQuery ids(Set<String> ids)
Only select action instances with the given ids.
-
actionDefinitionId
HistoricActionInstanceQuery actionDefinitionId(String actionDefinitionId)
Only select action instances with the given action definition id.
-
actionDefinitionIdLike
HistoricActionInstanceQuery actionDefinitionIdLike(String actionDefinitionIdLike)
Only select action instances with an action definition id like the given string.
-
name
HistoricActionInstanceQuery name(String name)
Only select action instances with the given name.
-
nameLike
HistoricActionInstanceQuery nameLike(String nameLike)
Only select action instances with an name like the given string.
-
scopeId
HistoricActionInstanceQuery scopeId(String scopeId)
Only select action instances with the given scope id.
-
subScopeId
HistoricActionInstanceQuery subScopeId(String subScopeId)
Only select action instances with the given sub scope id.
-
scopeType
HistoricActionInstanceQuery scopeType(String scopeType)
Only select action instances with the given scope type.
-
scopeDefinitionId
HistoricActionInstanceQuery scopeDefinitionId(String scopeDefinitionId)
Only select action instances with the given scope definition id.
-
startDate
HistoricActionInstanceQuery startDate(Date startDate)
Only select action instances started on the given time
-
startDateBefore
HistoricActionInstanceQuery startDateBefore(Date beforeTime)
Only select action instances started before the given time
-
startDateAfter
HistoricActionInstanceQuery startDateAfter(Date afterTime)
Only select action instances started after the given time
-
executionDate
HistoricActionInstanceQuery executionDate(Date executionDate)
Only select action instances executed on the given time
-
executionDateBefore
HistoricActionInstanceQuery executionDateBefore(Date beforeTime)
Only select action instances executed before the given time
-
executionDateAfter
HistoricActionInstanceQuery executionDateAfter(Date afterTime)
Only select action instances executed after the given time
-
executedBy
HistoricActionInstanceQuery executedBy(String executedBy)
Only select action instances with the given executed by value.
-
executedByLike
HistoricActionInstanceQuery executedByLike(String executedByLike)
Only select action instances with an executed by like the given string.
-
formInstanceId
HistoricActionInstanceQuery formInstanceId(String formInstanceId)
Only select action instances with the given form instance id.
-
formKey
HistoricActionInstanceQuery formKey(String formKey)
Only select action instances with the given form key;
-
priority
HistoricActionInstanceQuery priority(Integer priority)
Only select action instances with the given priority.
-
maxPriority
HistoricActionInstanceQuery maxPriority(Integer maxPriority)
Only select action instances with the given priority or lower.
-
minPriority
HistoricActionInstanceQuery minPriority(Integer minPriority)
Only select action instances with the given priority or higher.
-
tenantId
HistoricActionInstanceQuery tenantId(String tenantId)
Only select action instances that have the given tenant id.
-
tenantIdLike
HistoricActionInstanceQuery tenantIdLike(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()).
-
-