Uses of Interface
org.camunda.bpm.engine.identity.TenantQuery
Packages that use 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
Methods in org.camunda.bpm.engine that return TenantQueryModifier and TypeMethodDescriptionIdentityService.createTenantQuery()
Creates aTenantQuery
thats allows to programmatically query the tenants. -
Uses of TenantQuery in org.camunda.bpm.engine.identity
Methods in org.camunda.bpm.engine.identity that return TenantQueryModifier 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
Classes in org.camunda.bpm.engine.impl that implement TenantQueryMethods in org.camunda.bpm.engine.impl that return TenantQueryModifier 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
Methods in org.camunda.bpm.engine.impl.cmd that return TenantQuery -
Uses of TenantQuery in org.camunda.bpm.engine.impl.identity
Methods in org.camunda.bpm.engine.impl.identity that return TenantQueryModifier and TypeMethodDescriptionReadOnlyIdentityProvider.createTenantQuery()
ReadOnlyIdentityProvider.createTenantQuery
(CommandContext commandContext) -
Uses of TenantQuery in org.camunda.bpm.engine.impl.identity.db
Classes in org.camunda.bpm.engine.impl.identity.db that implement TenantQueryMethods in org.camunda.bpm.engine.impl.identity.db that return TenantQueryModifier and TypeMethodDescriptionDbReadOnlyIdentityServiceProvider.createTenantQuery()
DbReadOnlyIdentityServiceProvider.createTenantQuery
(CommandContext commandContext) -
Uses of TenantQuery in org.camunda.bpm.engine.rest.dto.identity
Methods in org.camunda.bpm.engine.rest.dto.identity that return TenantQueryModifier and TypeMethodDescriptionprotected TenantQuery
TenantQueryDto.createNewQuery
(ProcessEngine engine) Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type TenantQueryModifier 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
Classes in org.camunda.bpm.identity.impl.ldap that implement TenantQueryModifier and TypeClassDescriptionclass
Since multi-tenancy is not supported for the LDAP plugin, the query always returns0
or an empty list.Methods in org.camunda.bpm.identity.impl.ldap that return TenantQueryModifier and TypeMethodDescriptionLdapIdentityProviderSession.createTenantQuery()
LdapIdentityProviderSession.createTenantQuery
(CommandContext commandContext) -
Uses of TenantQuery in org.camunda.bpm.spring.boot.starter.security.oauth2.impl
Classes in org.camunda.bpm.spring.boot.starter.security.oauth2.impl that implement TenantQueryMethods in org.camunda.bpm.spring.boot.starter.security.oauth2.impl that return TenantQueryModifier and TypeMethodDescriptionOAuth2IdentityProvider.createTenantQuery()
OAuth2IdentityProvider.createTenantQuery
(CommandContext commandContext)