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 Deployment sRuntimeService :
For starting and searching ProcessInstance sTaskService :
Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService :
Used for managing User s,
Group s 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.identity |
classes related to the
IdentityService . |
org.camunda.bpm.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
org.camunda.bpm.engine.impl.cmd | |
org.camunda.bpm.engine.impl.identity | |
org.camunda.bpm.engine.impl.identity.db | |
org.camunda.bpm.engine.rest.dto.identity | |
org.camunda.bpm.engine.rest.impl | |
org.camunda.bpm.identity.impl.ldap |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
IdentityService.createTenantQuery()
Creates a
TenantQuery thats allows to programmatically query the
tenants. |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
TenantQuery.groupMember(String groupId)
Only select
Tenant s where the given group is member of. |
TenantQuery |
TenantQuery.includingGroupsOfUser(boolean includingGroups)
Selects the
Tenant s which belongs to one of the user's groups. |
TenantQuery |
TenantQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc() ). |
TenantQuery |
TenantQuery.orderByTenantName()
Order by tenant name (needs to be followed by
Query.asc() or Query.desc() ). |
TenantQuery |
TenantQuery.tenantId(String tenantId)
Only select
Tenant s with the given id. |
TenantQuery |
TenantQuery.tenantIdIn(String... ids)
Only select
Tenant s with the given ids |
TenantQuery |
TenantQuery.tenantName(String tenantName)
Only select
Tenant s with the given name. |
TenantQuery |
TenantQuery.tenantNameLike(String tenantNameLike)
Only select
Tenant s where the name matches the given parameter. |
TenantQuery |
TenantQuery.userMember(String userId)
Only select
Tenant s where the given user is member of. |
Modifier and Type | Class and Description |
---|---|
class |
TenantQueryImpl |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
IdentityServiceImpl.createTenantQuery() |
TenantQuery |
TenantQueryImpl.groupMember(String groupId) |
TenantQuery |
TenantQueryImpl.includingGroupsOfUser(boolean includingGroups) |
TenantQuery |
TenantQueryImpl.orderByTenantId() |
TenantQuery |
TenantQueryImpl.orderByTenantName() |
TenantQuery |
TenantQueryImpl.tenantId(String id) |
TenantQuery |
TenantQueryImpl.tenantIdIn(String... ids) |
TenantQuery |
TenantQueryImpl.tenantName(String name) |
TenantQuery |
TenantQueryImpl.tenantNameLike(String nameLike) |
TenantQuery |
TenantQueryImpl.userMember(String userId) |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
CreateTenantQueryCmd.execute(CommandContext commandContext) |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
ReadOnlyIdentityProvider.createTenantQuery() |
TenantQuery |
ReadOnlyIdentityProvider.createTenantQuery(CommandContext commandContext) |
Modifier and Type | Class and Description |
---|---|
class |
DbTenantQueryImpl |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
DbReadOnlyIdentityServiceProvider.createTenantQuery() |
TenantQuery |
DbReadOnlyIdentityServiceProvider.createTenantQuery(CommandContext commandContext) |
Modifier and Type | Method and Description |
---|---|
protected TenantQuery |
TenantQueryDto.createNewQuery(ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
protected void |
TenantQueryDto.applyFilters(TenantQuery query) |
protected void |
TenantQueryDto.applySortBy(TenantQuery query,
String sortBy,
Map<String,Object> parameters,
ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
protected List<Tenant> |
TenantRestServiceImpl.executePaginatedQuery(TenantQuery query,
Integer firstResult,
Integer maxResults) |
Modifier and Type | Class and Description |
---|---|
class |
LdapTenantQuery
Since multi-tenancy is not supported for the LDAP plugin, the query always
returns
0 or an empty list. |
Modifier and Type | Method and Description |
---|---|
TenantQuery |
LdapIdentityProviderSession.createTenantQuery() |
TenantQuery |
LdapIdentityProviderSession.createTenantQuery(CommandContext commandContext) |
Copyright © 2022. All rights reserved.