Uses of Interface
org.camunda.bpm.engine.filter.FilterQuery
-
Packages that use FilterQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.filter org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.filter -
-
Uses of FilterQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return FilterQuery Modifier and Type Method Description FilterQueryFilterService. createFilterQuery()Creates a new filter queryFilterQueryFilterService. createTaskFilterQuery()Creates a new task filter query. -
Uses of FilterQuery in org.camunda.bpm.engine.filter
Methods in org.camunda.bpm.engine.filter that return FilterQuery Modifier and Type Method Description FilterQueryFilterQuery. filterId(String filterId)FilterQueryFilterQuery. filterName(String name)FilterQueryFilterQuery. filterNameLike(String nameLike)FilterQueryFilterQuery. filterOwner(String owner)FilterQueryFilterQuery. filterResourceType(String resourceType)FilterQueryFilterQuery. orderByFilterId()Order by filter id (needs to be followed byQuery.asc()orQuery.desc()).FilterQueryFilterQuery. orderByFilterName()Order by filter id (needs to be followed byQuery.asc()orQuery.desc()).FilterQueryFilterQuery. orderByFilterOwner()Order by filter id (needs to be followed byQuery.asc()orQuery.desc()).FilterQueryFilterQuery. orderByFilterResourceType()Order by filter id (needs to be followed byQuery.asc()orQuery.desc()). -
Uses of FilterQuery in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return FilterQuery Modifier and Type Method Description FilterQueryFilterServiceImpl. createFilterQuery()FilterQueryFilterServiceImpl. createTaskFilterQuery() -
Uses of FilterQuery in org.camunda.bpm.engine.impl.filter
Classes in org.camunda.bpm.engine.impl.filter that implement FilterQuery Modifier and Type Class Description classFilterQueryImplMethods in org.camunda.bpm.engine.impl.filter that return FilterQuery Modifier and Type Method Description FilterQueryFilterQueryImpl. filterId(String filterId)FilterQueryFilterQueryImpl. filterName(String name)FilterQueryFilterQueryImpl. filterNameLike(String nameLike)FilterQueryFilterQueryImpl. filterOwner(String owner)FilterQueryFilterQueryImpl. filterResourceType(String resourceType)FilterQueryFilterQueryImpl. orderByFilterId()FilterQueryFilterQueryImpl. orderByFilterName()FilterQueryFilterQueryImpl. orderByFilterOwner()FilterQueryFilterQueryImpl. orderByFilterResourceType()
-