| Package | Description |
|---|---|
| org.camunda.bpm.engine |
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation
can be executed:RepositoryService:
Manages DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups and the relations between themManagementService:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService:
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 |
| Modifier and Type | Method and Description |
|---|---|
Filter |
FilterService.getFilter(String filterId)
Returns the filter for the given filter id.
|
Filter |
FilterService.newTaskFilter()
Creates a new task filter.
|
Filter |
FilterService.newTaskFilter(String filterName)
Creates a new task filter with a given name.
|
Filter |
FilterService.saveFilter(Filter filter)
Saves the filter in the database.
|
| Modifier and Type | Method and Description |
|---|---|
Filter |
FilterService.saveFilter(Filter filter)
Saves the filter in the database.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends Query<?,?>> |
Filter.extend(T extendingQuery)
Extends the query with the additional query.
|
Filter |
Filter.setName(String name) |
Filter |
Filter.setOwner(String owner) |
Filter |
Filter.setProperties(Map<String,Object> properties) |
<T extends Query<?,?>> |
Filter.setQuery(T query) |
| Modifier and Type | Method and Description |
|---|---|
Filter |
FilterServiceImpl.getFilter(String filterId) |
Filter |
FilterServiceImpl.newTaskFilter() |
Filter |
FilterServiceImpl.newTaskFilter(String filterName) |
Filter |
FilterServiceImpl.saveFilter(Filter filter) |
| Modifier and Type | Method and Description |
|---|---|
Filter |
FilterServiceImpl.saveFilter(Filter filter) |
| Modifier and Type | Method and Description |
|---|---|
AuthorizationEntity[] |
DefaultAuthorizationProvider.newFilter(Filter filter) |
AuthorizationEntity[] |
ResourceAuthorizationProvider.newFilter(Filter filter)
Invoked whenever a new filter is created
|
| Modifier and Type | Field and Description |
|---|---|
protected Filter |
SaveFilterCmd.filter |
| Modifier and Type | Method and Description |
|---|---|
Filter |
CreateFilterCmd.execute(CommandContext commandContext) |
Filter |
SaveFilterCmd.execute(CommandContext commandContext) |
Filter |
GetFilterCmd.execute(CommandContext commandContext) |
protected Filter |
AbstractExecuteFilterCmd.getFilter(CommandContext commandContext) |
| Constructor and Description |
|---|
SaveFilterCmd(Filter filter) |
| Modifier and Type | Method and Description |
|---|---|
List<Filter> |
FilterQueryImpl.executeList(CommandContext commandContext,
Page page) |
| Modifier and Type | Class and Description |
|---|---|
class |
FilterEntity |
| Modifier and Type | Method and Description |
|---|---|
Filter |
FilterManager.createNewFilter(String resourceType) |
<T extends Query<?,?>> |
FilterEntity.extend(T extendingQuery) |
Filter |
FilterManager.insertOrUpdateFilter(Filter filter) |
Filter |
FilterEntity.setName(String name) |
Filter |
FilterEntity.setOwner(String owner) |
Filter |
FilterEntity.setProperties(Map<String,Object> properties) |
<T extends Query<?,?>> |
FilterEntity.setQuery(T query) |
Filter |
FilterEntity.setResourceType(String resourceType) |
| Modifier and Type | Method and Description |
|---|---|
List<Filter> |
FilterManager.findFiltersByQueryCriteria(FilterQueryImpl filterQuery) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
FilterManager.createDefaultAuthorizations(Filter filter) |
Filter |
FilterManager.insertOrUpdateFilter(Filter filter) |
Copyright © 2013–2021 camunda services GmbH. All rights reserved.