Package com.flowable.action.api.history
Interface HistoricActionLinkQuery
-
- All Superinterfaces:
Query<HistoricActionLinkQuery,HistoricActionLink>
- All Known Implementing Classes:
HistoricActionLinkQueryImpl
public interface HistoricActionLinkQuery extends Query<HistoricActionLinkQuery,HistoricActionLink>
- Author:
- Joram Barrez
-
-
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 HistoricActionLinkQuery
actionDefinitionId(String actionDefinitionId)
HistoricActionLinkQuery
actionInstanceId(String actionInstanceId)
HistoricActionLinkQuery
createdAfter(Date afterTime)
HistoricActionLinkQuery
createdBefore(Date beforeTime)
HistoricActionLinkQuery
id(String id)
HistoricActionLinkQuery
ids(Set<String> ids)
HistoricActionLinkQuery
scopeId(String scopeId)
HistoricActionLinkQuery
scopeType(String scopeType)
-
-
-
Method Detail
-
id
HistoricActionLinkQuery id(String id)
-
ids
HistoricActionLinkQuery ids(Set<String> ids)
-
actionInstanceId
HistoricActionLinkQuery actionInstanceId(String actionInstanceId)
-
actionDefinitionId
HistoricActionLinkQuery actionDefinitionId(String actionDefinitionId)
-
scopeId
HistoricActionLinkQuery scopeId(String scopeId)
-
scopeType
HistoricActionLinkQuery scopeType(String scopeType)
-
createdBefore
HistoricActionLinkQuery createdBefore(Date beforeTime)
-
createdAfter
HistoricActionLinkQuery createdAfter(Date afterTime)
-
-