Uses of Interface
org.camunda.bpm.engine.identity.TenantQuery

Packages that use TenantQuery
org.camunda.bpm.engine Public API of the camunda BPM 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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups 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 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   
 

Uses of TenantQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return TenantQuery
 TenantQuery IdentityService.createTenantQuery()
          Creates a TenantQuery 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
 TenantQuery TenantQuery.groupMember(String groupId)
          Only select Tenants where the given group is member of.
 TenantQuery TenantQuery.includingGroupsOfUser(boolean includingGroups)
          Selects the Tenants 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 Tenants with the given id.
 TenantQuery TenantQuery.tenantIdIn(String... ids)
          Only select Tenants with the given ids
 TenantQuery TenantQuery.tenantName(String tenantName)
          Only select Tenants with the given name.
 TenantQuery TenantQuery.tenantNameLike(String tenantNameLike)
          Only select Tenants where the name matches the given parameter.
 TenantQuery TenantQuery.userMember(String userId)
          Only select Tenants 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
 class TenantQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl that return TenantQuery
 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
 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
 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
 class DbTenantQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl.identity.db that return TenantQuery
 TenantQuery DbReadOnlyIdentityServiceProvider.createTenantQuery()
           
 TenantQuery DbReadOnlyIdentityServiceProvider.createTenantQuery(CommandContext commandContext)
           
 



Copyright © 2017 camunda services GmbH. All rights reserved.