Package com.flowable.agent.api.history
Interface HistoricAgentInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<HistoricAgentInstanceQuery,
HistoricAgentInstance>
public interface HistoricAgentInstanceQuery
extends org.flowable.common.engine.api.query.Query<HistoricAgentInstanceQuery,HistoricAgentInstance>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
org.flowable.common.engine.api.query.Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionagentDefinitionId
(String agentDefinitionId) Query by the ID of the agent definitionQuery only agent instances which are chat disabled.Query only agent instances which are chat enabled.finished()
Query only agent instances which are finished.Query by the id of the instanceids
(Collection<String> ids) Query by multiple ids of instancesreferenceId
(String referenceId) Query by the agent instance reference idreferenceType
(String referenceType) Query by the agent instance reference typestartUserId
(String startUserId) Query by the id of the user that started the instanceQuery by the tenant id of the instanceQuery only agent instances which are not yet finished.Methods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
id
Query by the id of the instance -
ids
Query by multiple ids of instances -
tenantId
Query by the tenant id of the instance -
agentDefinitionId
Query by the ID of the agent definition -
referenceType
Query by the agent instance reference type -
referenceId
Query by the agent instance reference id -
startUserId
Query by the id of the user that started the instance -
finished
HistoricAgentInstanceQuery finished()Query only agent instances which are finished. -
unfinished
HistoricAgentInstanceQuery unfinished()Query only agent instances which are not yet finished. -
chatEnabled
HistoricAgentInstanceQuery chatEnabled()Query only agent instances which are chat enabled. -
chatDisabled
HistoricAgentInstanceQuery chatDisabled()Query only agent instances which are chat disabled.
-