Uses of Interface
org.camunda.bpm.engine.identity.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
Modifier and TypeMethodDescriptionIdentityService.createGroupQuery()
Creates aGroupQuery
thats allows to programmatically query the groups. -
Uses of GroupQuery in org.camunda.bpm.engine.identity
Modifier 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
Modifier 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
-
Uses of GroupQuery in org.camunda.bpm.engine.impl.identity
Modifier and TypeMethodDescriptionReadOnlyIdentityProvider.createGroupQuery()
ReadOnlyIdentityProvider.createGroupQuery
(CommandContext commandContext) -
Uses of GroupQuery in org.camunda.bpm.engine.impl.identity.db
Modifier and TypeMethodDescriptionDbReadOnlyIdentityServiceProvider.createGroupQuery()
DbReadOnlyIdentityServiceProvider.createGroupQuery
(CommandContext commandContext) -
Uses of GroupQuery in org.camunda.bpm.engine.rest.dto.identity
Modifier and TypeMethodDescriptionprotected GroupQuery
GroupQueryDto.createNewQuery
(ProcessEngine engine) Modifier 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
Modifier and TypeMethodDescriptionLdapIdentityProviderSession.createGroupQuery()
LdapIdentityProviderSession.createGroupQuery
(CommandContext commandContext) -
Uses of GroupQuery in org.camunda.bpm.spring.boot.starter.security.oauth2.impl
Modifier and TypeMethodDescriptionOAuth2IdentityProvider.createGroupQuery()
OAuth2IdentityProvider.createGroupQuery
(CommandContext commandContext)