Package com.flowable.action.api.runtime
Interface ActionLinkQuery
-
- All Superinterfaces:
Query<ActionLinkQuery,ActionLink>
- All Known Implementing Classes:
ActionLinkQueryImpl
public interface ActionLinkQuery extends Query<ActionLinkQuery,ActionLink>
- 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 ActionLinkQuery
actionDefinitionId(String actionDefinitionId)
ActionLinkQuery
actionInstanceId(String actionInstanceId)
ActionLinkQuery
createdAfter(Date afterTime)
ActionLinkQuery
createdBefore(Date beforeTime)
ActionLinkQuery
id(String id)
ActionLinkQuery
ids(Set<String> ids)
ActionLinkQuery
scopeId(String scopeId)
ActionLinkQuery
scopeType(String scopeType)
-
-
-
Method Detail
-
id
ActionLinkQuery id(String id)
-
ids
ActionLinkQuery ids(Set<String> ids)
-
actionInstanceId
ActionLinkQuery actionInstanceId(String actionInstanceId)
-
actionDefinitionId
ActionLinkQuery actionDefinitionId(String actionDefinitionId)
-
scopeId
ActionLinkQuery scopeId(String scopeId)
-
scopeType
ActionLinkQuery scopeType(String scopeType)
-
createdBefore
ActionLinkQuery createdBefore(Date beforeTime)
-
createdAfter
ActionLinkQuery createdAfter(Date afterTime)
-
-