Uses of Interface
org.camunda.bpm.engine.filter.Filter
-
Packages that use Filter 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.cfg.auth org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.filter org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.rest.impl org.camunda.bpm.engine.rest.sub.runtime.impl org.camunda.bpm.spring.boot.starter.util -
-
Uses of Filter in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return Filter Modifier and Type Method Description FilterFilterService. getFilter(java.lang.String filterId)Returns the filter for the given filter id.FilterFilterService. newTaskFilter()Creates a new task filter.FilterFilterService. newTaskFilter(java.lang.String filterName)Creates a new task filter with a given name.FilterFilterService. saveFilter(Filter filter)Saves the filter in the database.Methods in org.camunda.bpm.engine with parameters of type Filter Modifier and Type Method Description FilterFilterService. saveFilter(Filter filter)Saves the filter in the database. -
Uses of Filter in org.camunda.bpm.engine.filter
Methods in org.camunda.bpm.engine.filter that return Filter Modifier and Type Method Description <T extends Query<?,?>>
FilterFilter. extend(T extendingQuery)Extends the query with the additional query.FilterFilter. setName(java.lang.String name)FilterFilter. setOwner(java.lang.String owner)FilterFilter. setProperties(java.util.Map<java.lang.String,java.lang.Object> properties)<T extends Query<?,?>>
FilterFilter. setQuery(T query) -
Uses of Filter in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return Filter Modifier and Type Method Description FilterFilterServiceImpl. getFilter(java.lang.String filterId)FilterFilterServiceImpl. newTaskFilter()FilterFilterServiceImpl. newTaskFilter(java.lang.String filterName)FilterFilterServiceImpl. saveFilter(Filter filter)Methods in org.camunda.bpm.engine.impl with parameters of type Filter Modifier and Type Method Description FilterFilterServiceImpl. saveFilter(Filter filter) -
Uses of Filter in org.camunda.bpm.engine.impl.cfg.auth
Methods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type Filter Modifier and Type Method Description AuthorizationEntity[]DefaultAuthorizationProvider. newFilter(Filter filter)AuthorizationEntity[]ResourceAuthorizationProvider. newFilter(Filter filter)Invoked whenever a new filter is created -
Uses of Filter in org.camunda.bpm.engine.impl.cmd
Fields in org.camunda.bpm.engine.impl.cmd declared as Filter Modifier and Type Field Description protected FilterSaveFilterCmd. filterMethods in org.camunda.bpm.engine.impl.cmd that return Filter Modifier and Type Method Description FilterCreateFilterCmd. execute(CommandContext commandContext)FilterGetFilterCmd. execute(CommandContext commandContext)FilterSaveFilterCmd. execute(CommandContext commandContext)protected FilterAbstractExecuteFilterCmd. getFilter(CommandContext commandContext)Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type Filter Constructor Description SaveFilterCmd(Filter filter) -
Uses of Filter in org.camunda.bpm.engine.impl.filter
Methods in org.camunda.bpm.engine.impl.filter that return types with arguments of type Filter Modifier and Type Method Description java.util.List<Filter>FilterQueryImpl. executeList(CommandContext commandContext, Page page) -
Uses of Filter in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Filter Modifier and Type Class Description classFilterEntityMethods in org.camunda.bpm.engine.impl.persistence.entity that return Filter Modifier and Type Method Description FilterFilterManager. createNewFilter(java.lang.String resourceType)<T extends Query<?,?>>
FilterFilterEntity. extend(T extendingQuery)FilterFilterManager. insertOrUpdateFilter(Filter filter)FilterFilterEntity. setName(java.lang.String name)FilterFilterEntity. setOwner(java.lang.String owner)FilterFilterEntity. setProperties(java.util.Map<java.lang.String,java.lang.Object> properties)<T extends Query<?,?>>
FilterFilterEntity. setQuery(T query)FilterFilterEntity. setResourceType(java.lang.String resourceType)Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Filter Modifier and Type Method Description java.util.List<Filter>FilterManager. findFiltersByQueryCriteria(FilterQueryImpl filterQuery)Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type Filter Modifier and Type Method Description protected voidFilterManager. createDefaultAuthorizations(Filter filter)FilterFilterManager. insertOrUpdateFilter(Filter filter) -
Uses of Filter in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type Filter Modifier and Type Method Description static FilterDtoFilterDto. fromFilter(Filter filter)voidFilterDto. updateFilter(Filter filter, ProcessEngine engine) -
Uses of Filter in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl that return types with arguments of type Filter Modifier and Type Method Description java.util.List<Filter>FilterRestServiceImpl. executeFilterQuery(FilterQuery query, java.lang.Integer firstResult, java.lang.Integer maxResults)protected java.util.List<Filter>FilterRestServiceImpl. executePaginatedQuery(FilterQuery query, java.lang.Integer firstResult, java.lang.Integer maxResults) -
Uses of Filter in org.camunda.bpm.engine.rest.sub.runtime.impl
Fields in org.camunda.bpm.engine.rest.sub.runtime.impl declared as Filter Modifier and Type Field Description protected FilterFilterResourceImpl. dbFilterMethods in org.camunda.bpm.engine.rest.sub.runtime.impl that return Filter Modifier and Type Method Description protected FilterFilterResourceImpl. getDbFilter() -
Uses of Filter in org.camunda.bpm.spring.boot.starter.util
Methods in org.camunda.bpm.spring.boot.starter.util with parameters of type Filter Modifier and Type Method Description voidSpringBootProcessEngineLogger. createInitialFilter(Filter filter)
-