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 definitionagentDefinitionKey(String agentDefinitionKey) Query by the key 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.endOr()End an OR statement.finished()Query only agent instances which are finished.Query by the id of the instanceids(Collection<String> ids) Query by multiple ids of instancesor()Begin an OR statement.referenceId(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 instancetenantIdLike(String tenantIdLike) Query by a tenant id like the given oneQuery 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 -
tenantIdLike
Query by a tenant id like the given one -
agentDefinitionId
Query by the ID of the agent definition -
agentDefinitionKey
Query by the key 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. -
or
Begin an OR statement. Make sure to end the OR statement withendOr(). -
endOr
HistoricAgentInstanceQuery endOr()End an OR statement. -
orderByAgentInstanceId
HistoricAgentInstanceQuery orderByAgentInstanceId() -
orderByStartTime
HistoricAgentInstanceQuery orderByStartTime() -
orderByEndTime
HistoricAgentInstanceQuery orderByEndTime()
-