Uses of Interface
org.flowable.idm.api.GroupQuery
Packages that use GroupQuery
Package
Description
Public API of the Flowable 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 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 administration and maintenance operations,
which have no relation to the runtime exection 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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of GroupQuery in org.flowable.engine
Methods in org.flowable.engine that return GroupQueryModifier and TypeMethodDescriptionIdentityService.createGroupQuery()Creates aGroupQuerythat allows to programmatically query the groups. -
Uses of GroupQuery in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return GroupQuery -
Uses of GroupQuery in org.flowable.idm.api
Methods in org.flowable.idm.api that return GroupQueryModifier and TypeMethodDescriptionIdmIdentityService.createGroupQuery()Creates aGroupQuerythat allows to programmatically query the groups.Only selectGroups with the given id.Only selectGroups with the given ids.GroupQuery.groupMember(String groupMemberUserId) Only selectsGroups where the given user is a member of.GroupQuery.groupMembers(List<String> groupMemberUserIds) Only selectsGroups where the given users are a member of.Only selectGroups with the given name.GroupQuery.groupNameLike(String groupNameLike) Only selectGroups where the name matches the given parameter.GroupQuery.groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase) Only selectGroups where the name matches the given parameter (ignoring case).Only selectGroups which have the given type.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()). -
Uses of GroupQuery in org.flowable.idm.engine.impl
Classes in org.flowable.idm.engine.impl that implement GroupQueryMethods in org.flowable.idm.engine.impl that return GroupQueryModifier and TypeMethodDescriptionIdmIdentityServiceImpl.createGroupQuery()GroupQueryImpl.groupMember(String userId) GroupQueryImpl.groupMembers(List<String> userIds) GroupQueryImpl.groupNameLike(String nameLike) GroupQueryImpl.groupNameLikeIgnoreCase(String nameLikeIgnoreCase) GroupQueryImpl.orderByGroupId()GroupQueryImpl.orderByGroupName()GroupQueryImpl.orderByGroupType() -
Uses of GroupQuery in org.flowable.idm.engine.impl.cmd
Methods in org.flowable.idm.engine.impl.cmd that return GroupQuery -
Uses of GroupQuery in org.flowable.idm.engine.impl.persistence.entity
Methods in org.flowable.idm.engine.impl.persistence.entity that return GroupQueryModifier and TypeMethodDescriptionGroupEntityManager.createNewGroupQuery()GroupEntityManagerImpl.createNewGroupQuery() -
Uses of GroupQuery in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type GroupQueryModifier and TypeMethodDescriptionvoidBpmnRestApiInterceptor.accessGroupInfoWithQuery(GroupQuery groupQuery)