Uses of Interface
org.camunda.bpm.engine.identity.GroupQuery
Packages that use GroupQuery
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 GroupQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return GroupQueryModifier and TypeMethodDescriptionIdentityService.createGroupQuery()
Creates aGroupQuery
thats allows to programmatically query the groups. -
Uses of GroupQuery in org.camunda.bpm.engine.identity
Methods in org.camunda.bpm.engine.identity that return GroupQueryModifier and TypeMethodDescriptionOnly selectGroup
s with the given id.Only selectGroup
s with the given idsGroupQuery.groupMember
(String groupMemberUserId) Only selectsGroup
s where the given user is a member of.Only selectGroup
s with the given name.GroupQuery.groupNameLike
(String groupNameLike) Only selectGroup
s where the name matches the given parameter.Only selectGroup
s which have the given type.GroupQuery.memberOfTenant
(String tenantId) Only selectGroup
s that belongs to the given tenant.GroupQuery.orderByGroupId()
Order by group id (needs to be followed byQuery.asc()
orQuery.desc()
).GroupQuery.orderByGroupName()
Order by group name (needs to be followed byQuery.asc()
orQuery.desc()
).GroupQuery.orderByGroupType()
Order by group type (needs to be followed byQuery.asc()
orQuery.desc()
).GroupQuery.potentialStarter
(String procDefId) Only selectGroup
S that are potential starter for the given process definition. -
Uses of GroupQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement GroupQueryMethods in org.camunda.bpm.engine.impl that return GroupQueryModifier and TypeMethodDescriptionIdentityServiceImpl.createGroupQuery()
GroupQueryImpl.groupMember
(String userId) GroupQueryImpl.groupNameLike
(String nameLike) GroupQueryImpl.memberOfTenant
(String tenantId) GroupQueryImpl.orderByGroupId()
GroupQueryImpl.orderByGroupName()
GroupQueryImpl.orderByGroupType()
GroupQueryImpl.potentialStarter
(String procDefId) -
Uses of GroupQuery in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return GroupQuery -
Uses of GroupQuery in org.camunda.bpm.engine.impl.identity
Methods in org.camunda.bpm.engine.impl.identity that return GroupQueryModifier and TypeMethodDescriptionReadOnlyIdentityProvider.createGroupQuery()
ReadOnlyIdentityProvider.createGroupQuery
(CommandContext commandContext) -
Uses of GroupQuery in org.camunda.bpm.engine.impl.identity.db
Classes in org.camunda.bpm.engine.impl.identity.db that implement GroupQueryMethods in org.camunda.bpm.engine.impl.identity.db that return GroupQueryModifier and TypeMethodDescriptionDbReadOnlyIdentityServiceProvider.createGroupQuery()
DbReadOnlyIdentityServiceProvider.createGroupQuery
(CommandContext commandContext) -
Uses of GroupQuery in org.camunda.bpm.engine.rest.dto.identity
Methods in org.camunda.bpm.engine.rest.dto.identity that return GroupQueryModifier and TypeMethodDescriptionprotected GroupQuery
GroupQueryDto.createNewQuery
(ProcessEngine engine) Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type GroupQueryModifier and TypeMethodDescriptionprotected void
GroupQueryDto.applyFilters
(GroupQuery query) protected void
GroupQueryDto.applySortBy
(GroupQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine) -
Uses of GroupQuery in org.camunda.bpm.identity.impl.ldap
Classes in org.camunda.bpm.identity.impl.ldap that implement GroupQueryMethods in org.camunda.bpm.identity.impl.ldap that return GroupQueryModifier and TypeMethodDescriptionLdapIdentityProviderSession.createGroupQuery()
LdapIdentityProviderSession.createGroupQuery
(CommandContext commandContext) -
Uses of GroupQuery in org.camunda.bpm.spring.boot.starter.security.oauth2.impl
Classes in org.camunda.bpm.spring.boot.starter.security.oauth2.impl that implement GroupQueryMethods in org.camunda.bpm.spring.boot.starter.security.oauth2.impl that return GroupQueryModifier and TypeMethodDescriptionOAuth2IdentityProvider.createGroupQuery()
OAuth2IdentityProvider.createGroupQuery
(CommandContext commandContext)