Interface AgentInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<AgentInstanceQuery, AgentInstance>
- All Known Implementing Classes:
AgentInstanceQueryImpl
public interface AgentInstanceQuery
extends org.flowable.common.engine.api.query.Query<AgentInstanceQuery, AgentInstance>
-
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 agent instance callback idcallbackScopeId(String callbackScopeId) Query by the agent instance callback scope idcallbackType(String callbackType) Query by the agent instance callback typecallbackTypes(Collection<String> callbackTypes) Query by the agent instance callback typesQuery only agent instances which are chat disabled.Query only agent instances which are chat enabled.endOr()End an OR statement.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 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 instancetenantIdLike(String tenantIdLike) Query by a tenant id like the given oneMethods 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 -
startUserId
Query by the id of the user that started the instance -
referenceType
Query by the agent instance reference type -
referenceId
Query by the agent instance reference id -
callbackType
Query by the agent instance callback type -
callbackTypes
Query by the agent instance callback types -
callbackId
Query by the agent instance callback id -
callbackScopeId
Query by the agent instance callback scope id -
chatEnabled
AgentInstanceQuery chatEnabled()Query only agent instances which are chat enabled. -
chatDisabled
AgentInstanceQuery chatDisabled()Query only agent instances which are chat disabled. -
or
AgentInstanceQuery or()Begin an OR statement. Make sure to end the OR statement withendOr(). -
endOr
AgentInstanceQuery endOr()End an OR statement. -
orderByStartTime
AgentInstanceQuery orderByStartTime()
-