Uses of Interface
org.camunda.bpm.engine.query.Query
-
-
Uses of Query in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine with type parameters of type Query Modifier and Type Method Description <T,Q extends Query<?,T>>
List<T>FilterService. list(String filterId, Q extendingQuery)
Executes the extended query of a filter and returns the result as list.<T,Q extends Query<?,T>>
List<T>FilterService. listPage(String filterId, Q extendingQuery, int firstResult, int maxResults)
Executes the extended query of a filter and returns the result in the given boundaries as list.<T,Q extends Query<?,T>>
TFilterService. singleResult(String filterId, Q extendingQuery)
Executes the extended query of the filter and returns the a single result.Methods in org.camunda.bpm.engine with parameters of type Query Modifier and Type Method Description Long
FilterService. count(String filterId, Query<?,?> extendingQuery)
Executes the extended query of the filter and returns the result count. -
Uses of Query in org.camunda.bpm.engine.authorization
Subinterfaces of Query in org.camunda.bpm.engine.authorization Modifier and Type Interface Description interface
AuthorizationQuery
-
Uses of Query in org.camunda.bpm.engine.batch
Subinterfaces of Query in org.camunda.bpm.engine.batch Modifier and Type Interface Description interface
BatchQuery
Query forBatch
instances.interface
BatchStatisticsQuery
-
Uses of Query in org.camunda.bpm.engine.batch.history
Subinterfaces of Query in org.camunda.bpm.engine.batch.history Modifier and Type Interface Description interface
HistoricBatchQuery
Query forHistoricBatch
instances. -
Uses of Query in org.camunda.bpm.engine.externaltask
Subinterfaces of Query in org.camunda.bpm.engine.externaltask Modifier and Type Interface Description interface
ExternalTaskQuery
-
Uses of Query in org.camunda.bpm.engine.filter
Subinterfaces of Query in org.camunda.bpm.engine.filter Modifier and Type Interface Description interface
FilterQuery
Methods in org.camunda.bpm.engine.filter with type parameters of type Query Modifier and Type Method Description <T extends Query<?,?>>
FilterFilter. extend(T extendingQuery)
Extends the query with the additional query.<T extends Query<?,?>>
TFilter. getQuery()
<T extends Query<?,?>>
FilterFilter. setQuery(T query)
-
Uses of Query in org.camunda.bpm.engine.history
-
Uses of Query in org.camunda.bpm.engine.identity
Subinterfaces of Query in org.camunda.bpm.engine.identity Modifier and Type Interface Description interface
GroupQuery
Allows to programmatically query forGroup
s.interface
TenantQuery
Allows to programmatically query forTenant
s.interface
UserQuery
Allows programmatic querying ofUser
-
Uses of Query in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl with type parameters of type Query Modifier and Type Class Description class
AbstractQuery<T extends Query<?,?>,U>
Abstract superclass for all query types.class
AbstractVariableQueryImpl<T extends Query<?,?>,U>
Abstract query class that adds methods to query for variable values.Methods in org.camunda.bpm.engine.impl with type parameters of type Query Modifier and Type Method Description <T,Q extends Query<?,T>>
List<T>FilterServiceImpl. list(String filterId, Q extendingQuery)
<T,Q extends Query<?,T>>
List<T>FilterServiceImpl. listPage(String filterId, Q extendingQuery, int firstResult, int maxResults)
<T,Q extends Query<?,T>>
TFilterServiceImpl. singleResult(String filterId, Q extendingQuery)
Methods in org.camunda.bpm.engine.impl with parameters of type Query Modifier and Type Method Description Long
FilterServiceImpl. count(String filterId, Query<?,?> extendingQuery)
-
Uses of Query in org.camunda.bpm.engine.impl.batch
Classes in org.camunda.bpm.engine.impl.batch that implement Query Modifier and Type Class Description class
BatchQueryImpl
class
BatchStatisticsQueryImpl
-
Uses of Query in org.camunda.bpm.engine.impl.batch.history
Classes in org.camunda.bpm.engine.impl.batch.history that implement Query Modifier and Type Class Description class
HistoricBatchQueryImpl
-
Uses of Query in org.camunda.bpm.engine.impl.cmd
Fields in org.camunda.bpm.engine.impl.cmd declared as Query Modifier and Type Field Description protected Query<?,?>
AbstractExecuteFilterCmd. extendingQuery
Methods in org.camunda.bpm.engine.impl.cmd that return Query Modifier and Type Method Description protected Query<?,?>
AbstractExecuteFilterCmd. getFilterQuery(CommandContext commandContext)
Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type Query Constructor Description AbstractExecuteFilterCmd(String filterId, Query<?,?> extendingQuery)
ExecuteFilterCountCmd(String filterId, Query<?,?> extendingQuery)
ExecuteFilterListCmd(String filterId, Query<?,?> extendingQuery)
ExecuteFilterListPageCmd(String filterId, Query<?,?> extendingQuery, int firstResult, int maxResults)
ExecuteFilterSingleResultCmd(String filterId, Query<?,?> extendingQuery)
-
Uses of Query in org.camunda.bpm.engine.impl.cmmn.entity.repository
Classes in org.camunda.bpm.engine.impl.cmmn.entity.repository that implement Query Modifier and Type Class Description class
CaseDefinitionQueryImpl
-
Uses of Query in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement Query Modifier and Type Class Description class
CaseExecutionQueryImpl
class
CaseInstanceQueryImpl
class
CaseSentryPartQueryImpl
This query is currently not public API on purpose. -
Uses of Query in org.camunda.bpm.engine.impl.dmn.entity.repository
Classes in org.camunda.bpm.engine.impl.dmn.entity.repository that implement Query Modifier and Type Class Description class
DecisionDefinitionQueryImpl
class
DecisionRequirementsDefinitionQueryImpl
-
Uses of Query in org.camunda.bpm.engine.impl.filter
Classes in org.camunda.bpm.engine.impl.filter that implement Query Modifier and Type Class Description class
FilterQueryImpl
-
Uses of Query in org.camunda.bpm.engine.impl.identity.db
Classes in org.camunda.bpm.engine.impl.identity.db that implement Query Modifier and Type Class Description class
DbGroupQueryImpl
class
DbTenantQueryImpl
class
DbUserQueryImpl
-
Uses of Query in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity with type parameters of type Query Modifier and Type Method Description <T extends Query<?,?>>
FilterFilterEntity. extend(T extendingQuery)
<T extends Query<?,?>>
TFilterEntity. getQuery()
<T extends Query<?,?>>
FilterFilterEntity. setQuery(T query)
-
Uses of Query in org.camunda.bpm.engine.management
Subinterfaces of Query in org.camunda.bpm.engine.management Modifier and Type Interface Description interface
ActivityStatisticsQuery
interface
DeploymentStatisticsQuery
interface
JobDefinitionQuery
Allows programmatic querying ofJobDefinition
s.interface
ProcessDefinitionStatisticsQuery
interface
SchemaLogQuery
-
Uses of Query in org.camunda.bpm.engine.query
Classes in org.camunda.bpm.engine.query with type parameters of type Query Modifier and Type Interface Description interface
Query<T extends Query<?,?>,U>
Describes basic methods for querying. -
Uses of Query in org.camunda.bpm.engine.repository
Subinterfaces of Query in org.camunda.bpm.engine.repository Modifier and Type Interface Description interface
CaseDefinitionQuery
interface
DecisionDefinitionQuery
interface
DecisionRequirementsDefinitionQuery
interface
DeploymentQuery
Allows programmatic querying ofDeployment
s.interface
ProcessDefinitionQuery
Allows programmatic querying ofProcessDefinition
s. -
Uses of Query in org.camunda.bpm.engine.rest.dto
Classes in org.camunda.bpm.engine.rest.dto with type parameters of type Query Modifier and Type Class Description class
AbstractQueryDto<T extends Query<?,?>>
Defines common query operations, such as sorting options and validation. -
Uses of Query in org.camunda.bpm.engine.rest.dto.task
Methods in org.camunda.bpm.engine.rest.dto.task with parameters of type Query Modifier and Type Method Description static TaskQueryDto
TaskQueryDto. fromQuery(Query<?,?> query)
static TaskQueryDto
TaskQueryDto. fromQuery(Query<?,?> query, boolean isOrQueryActive)
-
Uses of Query in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl with type parameters of type Query Modifier and Type Method Description protected <T extends Query,R extends AbstractQueryDto>
TProcessInstanceRestServiceImpl. toQuery(R query)
-
Uses of Query in org.camunda.bpm.engine.rest.impl.history
Methods in org.camunda.bpm.engine.rest.impl.history with parameters of type Query Modifier and Type Method Description protected List<?>
HistoricBatchRestServiceImpl. executePaginatedQuery(Query query, Integer firstResult, Integer maxResults)
-
Uses of Query in org.camunda.bpm.engine.rest.sub
Classes in org.camunda.bpm.engine.rest.sub with type parameters of type Query Modifier and Type Class Description class
AbstractResourceProvider<T extends Query<?,U>,U,DTO>
Base class to unify the getResource(boolean deserialized) and getResourceBinary() methods for several subclasses.Methods in org.camunda.bpm.engine.rest.sub that return Query Modifier and Type Method Description protected abstract Query<T,U>
AbstractResourceProvider. baseQueryForBinaryVariable()
Create the query we need for fetching the desired result.protected abstract Query<T,U>
AbstractResourceProvider. baseQueryForVariable(boolean deserializeObjectValue)
TODO change comment Create the query we need for fetching the desired result. -
Uses of Query in org.camunda.bpm.engine.rest.sub.history.impl
Methods in org.camunda.bpm.engine.rest.sub.history.impl that return Query Modifier and Type Method Description protected Query<HistoricDetailQuery,HistoricDetail>
HistoricDetailResourceImpl. baseQueryForBinaryVariable()
protected Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
HistoricVariableInstanceResourceImpl. baseQueryForBinaryVariable()
protected Query<HistoricDetailQuery,HistoricDetail>
HistoricDetailResourceImpl. baseQueryForVariable(boolean deserializeObjectValue)
protected Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
HistoricVariableInstanceResourceImpl. baseQueryForVariable(boolean deserializeObjectValue)
-
Uses of Query in org.camunda.bpm.engine.rest.sub.runtime.impl
Methods in org.camunda.bpm.engine.rest.sub.runtime.impl that return Query Modifier and Type Method Description protected Query<VariableInstanceQuery,VariableInstance>
VariableInstanceResourceImpl. baseQueryForBinaryVariable()
protected Query<VariableInstanceQuery,VariableInstance>
VariableInstanceResourceImpl. baseQueryForVariable(boolean deserializeObjectValue)
protected Query
FilterResourceImpl. convertQuery(String queryString)
-
Uses of Query in org.camunda.bpm.engine.runtime
Subinterfaces of Query in org.camunda.bpm.engine.runtime Modifier and Type Interface Description interface
CaseExecutionQuery
interface
CaseInstanceQuery
interface
EventSubscriptionQuery
Allows querying of event subscriptions.interface
ExecutionQuery
Allows programmatic querying ofExecution
s.interface
IncidentQuery
interface
JobQuery
Allows programmatic querying ofJob
s.interface
ProcessInstanceQuery
Allows programmatic querying ofProcessInstance
s.interface
VariableInstanceQuery
-
Uses of Query in org.camunda.bpm.engine.task
Subinterfaces of Query in org.camunda.bpm.engine.task Modifier and Type Interface Description interface
TaskQuery
Allows programmatic querying ofTask
s; -
Uses of Query in org.camunda.bpm.identity.impl.ldap
Classes in org.camunda.bpm.identity.impl.ldap that implement Query Modifier and Type Class Description class
LdapGroupQuery
class
LdapTenantQuery
Since multi-tenancy is not supported for the LDAP plugin, the query always returns0
or an empty list.class
LdapUserQueryImpl
-