Package com.flowable.agent.api.history
Interface HistoricAgentInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<HistoricAgentInstanceQuery,HistoricAgentInstance>
- All Known Implementing Classes:
HistoricAgentInstanceQueryImpl
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 definitioncallbackId(String callbackId) Query by the callback id of the instancecallbackScopeId(String callbackScopeId) Query by the callback scope id of the instancecallbackScopeIds(Collection<String> callbackScopeIds) Query by multiple callback scope id of the instancescallbackType(String callbackType) Query by the callback type of the instancecallbackTypes(Collection<String> callbackTypes) Query by multiple callback types of instancesQuery 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 idreferenceIds(Collection<String> referenceIds) Query by multiple agent instance reference idsreferenceType(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 -
referenceIds
Query by multiple agent instance reference ids -
callbackId
Query by the callback id of the instance -
callbackScopeId
Query by the callback scope id of the instance -
callbackScopeIds
Query by multiple callback scope id of the instances -
callbackType
Query by the callback type of the instance -
callbackTypes
Query by multiple callback types of instances -
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.
-