Uses of Interface
org.camunda.bpm.engine.identity.TenantQuery
-
Packages that use TenantQuery 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 aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s 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.identity classes related to theIdentityService
.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 -
-
Uses of TenantQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return TenantQuery Modifier and Type Method Description TenantQuery
IdentityService. 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 TenantQuery Modifier and Type Method Description TenantQuery
TenantQuery. groupMember(String groupId)
Only selectTenant
s where the given group is member of.TenantQuery
TenantQuery. includingGroupsOfUser(boolean includingGroups)
Selects theTenant
s which belongs to one of the user's groups.TenantQuery
TenantQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).TenantQuery
TenantQuery. orderByTenantName()
Order by tenant name (needs to be followed byQuery.asc()
orQuery.desc()
).TenantQuery
TenantQuery. tenantId(String tenantId)
Only selectTenant
s with the given id.TenantQuery
TenantQuery. tenantIdIn(String... ids)
Only selectTenant
s with the given idsTenantQuery
TenantQuery. tenantName(String tenantName)
Only selectTenant
s with the given name.TenantQuery
TenantQuery. tenantNameLike(String tenantNameLike)
Only selectTenant
s where the name matches the given parameter.TenantQuery
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 TenantQuery Modifier and Type Class Description class
TenantQueryImpl
Methods in org.camunda.bpm.engine.impl that return TenantQuery Modifier and Type Method 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)
-
Uses of TenantQuery in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return TenantQuery Modifier and Type Method Description TenantQuery
CreateTenantQueryCmd. execute(CommandContext commandContext)
-
Uses of TenantQuery in org.camunda.bpm.engine.impl.identity
Methods in org.camunda.bpm.engine.impl.identity that return TenantQuery Modifier and Type Method Description TenantQuery
ReadOnlyIdentityProvider. createTenantQuery()
TenantQuery
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 TenantQuery Modifier and Type Class Description class
DbTenantQueryImpl
Methods in org.camunda.bpm.engine.impl.identity.db that return TenantQuery Modifier and Type Method Description TenantQuery
DbReadOnlyIdentityServiceProvider. createTenantQuery()
TenantQuery
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 TenantQuery Modifier and Type Method Description protected TenantQuery
TenantQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type TenantQuery Modifier and Type Method Description protected 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.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl with parameters of type TenantQuery Modifier and Type Method Description protected List<Tenant>
TenantRestServiceImpl. executePaginatedQuery(TenantQuery query, Integer firstResult, Integer maxResults)
-
Uses of TenantQuery in org.camunda.bpm.identity.impl.ldap
Classes in org.camunda.bpm.identity.impl.ldap that implement TenantQuery Modifier and Type Class Description class
LdapTenantQuery
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 TenantQuery Modifier and Type Method Description TenantQuery
LdapIdentityProviderSession. createTenantQuery()
TenantQuery
LdapIdentityProviderSession. createTenantQuery(CommandContext commandContext)
-