Uses of Interface
org.camunda.bpm.engine.identity.TenantQuery
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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.classes related to the
IdentityService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of TenantQuery in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionIdentityService.createTenantQuery()
Creates aTenantQuery
thats allows to programmatically query the tenants. -
Uses of TenantQuery in org.camunda.bpm.engine.identity
Modifier and TypeMethodDescriptionTenantQuery.groupMember
(String groupId) Only selectTenant
s where the given group is member of.TenantQuery.includingGroupsOfUser
(boolean includingGroups) Selects theTenant
s which belongs to one of the user's groups.TenantQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).TenantQuery.orderByTenantName()
Order by tenant name (needs to be followed byQuery.asc()
orQuery.desc()
).Only selectTenant
s with the given id.TenantQuery.tenantIdIn
(String... ids) Only selectTenant
s with the given idsTenantQuery.tenantName
(String tenantName) Only selectTenant
s with the given name.TenantQuery.tenantNameLike
(String tenantNameLike) Only selectTenant
s where the name matches the given parameter.TenantQuery.userMember
(String userId) Only selectTenant
s where the given user is member of. -
Uses of TenantQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionIdentityServiceImpl.createTenantQuery()
TenantQueryImpl.groupMember
(String groupId) TenantQueryImpl.includingGroupsOfUser
(boolean includingGroups) TenantQueryImpl.orderByTenantId()
TenantQueryImpl.orderByTenantName()
TenantQueryImpl.tenantIdIn
(String... ids) TenantQueryImpl.tenantName
(String name) TenantQueryImpl.tenantNameLike
(String nameLike) TenantQueryImpl.userMember
(String userId) -
Uses of TenantQuery in org.camunda.bpm.engine.impl.cmd
-
Uses of TenantQuery in org.camunda.bpm.engine.impl.identity
Modifier and TypeMethodDescriptionReadOnlyIdentityProvider.createTenantQuery()
ReadOnlyIdentityProvider.createTenantQuery
(CommandContext commandContext) -
Uses of TenantQuery in org.camunda.bpm.engine.impl.identity.db
Modifier and TypeMethodDescriptionDbReadOnlyIdentityServiceProvider.createTenantQuery()
DbReadOnlyIdentityServiceProvider.createTenantQuery
(CommandContext commandContext) -
Uses of TenantQuery in org.camunda.bpm.engine.rest.dto.identity
Modifier and TypeMethodDescriptionprotected TenantQuery
TenantQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
TenantQueryDto.applyFilters
(TenantQuery query) protected void
TenantQueryDto.applySortBy
(TenantQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of TenantQuery in org.camunda.bpm.identity.impl.ldap
Modifier and TypeClassDescriptionclass
Since multi-tenancy is not supported for the LDAP plugin, the query always returns0
or an empty list.Modifier and TypeMethodDescriptionLdapIdentityProviderSession.createTenantQuery()
LdapIdentityProviderSession.createTenantQuery
(CommandContext commandContext) -
Uses of TenantQuery in org.camunda.bpm.spring.boot.starter.security.oauth2.impl
Modifier and TypeMethodDescriptionOAuth2IdentityProvider.createTenantQuery()
OAuth2IdentityProvider.createTenantQuery
(CommandContext commandContext)