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 aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,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 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.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 TenantQueryIdentityService. createTenantQuery()Creates aTenantQuerythats 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 TenantQueryTenantQuery. groupMember(java.lang.String groupId)Only selectTenants where the given group is member of.TenantQueryTenantQuery. includingGroupsOfUser(boolean includingGroups)Selects theTenants which belongs to one of the user's groups.TenantQueryTenantQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).TenantQueryTenantQuery. orderByTenantName()Order by tenant name (needs to be followed byQuery.asc()orQuery.desc()).TenantQueryTenantQuery. tenantId(java.lang.String tenantId)Only selectTenants with the given id.TenantQueryTenantQuery. tenantIdIn(java.lang.String... ids)Only selectTenants with the given idsTenantQueryTenantQuery. tenantName(java.lang.String tenantName)Only selectTenants with the given name.TenantQueryTenantQuery. tenantNameLike(java.lang.String tenantNameLike)Only selectTenants where the name matches the given parameter.TenantQueryTenantQuery. userMember(java.lang.String userId)Only selectTenants 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 classTenantQueryImplMethods in org.camunda.bpm.engine.impl that return TenantQuery Modifier and Type Method Description TenantQueryIdentityServiceImpl. createTenantQuery()TenantQueryTenantQueryImpl. groupMember(java.lang.String groupId)TenantQueryTenantQueryImpl. includingGroupsOfUser(boolean includingGroups)TenantQueryTenantQueryImpl. orderByTenantId()TenantQueryTenantQueryImpl. orderByTenantName()TenantQueryTenantQueryImpl. tenantId(java.lang.String id)TenantQueryTenantQueryImpl. tenantIdIn(java.lang.String... ids)TenantQueryTenantQueryImpl. tenantName(java.lang.String name)TenantQueryTenantQueryImpl. tenantNameLike(java.lang.String nameLike)TenantQueryTenantQueryImpl. userMember(java.lang.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 TenantQueryCreateTenantQueryCmd. 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 TenantQueryReadOnlyIdentityProvider. createTenantQuery()TenantQueryReadOnlyIdentityProvider. 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 classDbTenantQueryImplMethods in org.camunda.bpm.engine.impl.identity.db that return TenantQuery Modifier and Type Method Description TenantQueryDbReadOnlyIdentityServiceProvider. createTenantQuery()TenantQueryDbReadOnlyIdentityServiceProvider. 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 TenantQueryTenantQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type TenantQuery Modifier and Type Method Description protected voidTenantQueryDto. applyFilters(TenantQuery query)protected voidTenantQueryDto. applySortBy(TenantQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine) -
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 classLdapTenantQuerySince multi-tenancy is not supported for the LDAP plugin, the query always returns0or an empty list.Methods in org.camunda.bpm.identity.impl.ldap that return TenantQuery Modifier and Type Method Description TenantQueryLdapIdentityProviderSession. createTenantQuery()TenantQueryLdapIdentityProviderSession. createTenantQuery(CommandContext commandContext)
-