Package org.flowable.idm.api
Interface GroupQuery
- All Superinterfaces:
Query<GroupQuery,Group>
- All Known Implementing Classes:
GroupQueryImpl
Allows to programmatically query for
Groups.- Author:
- Joram Barrez
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder -
Method Summary
Modifier and TypeMethodDescriptionOnly selectGroups with the given id.Only selectGroups with the given ids.groupMember(String groupMemberUserId) Only selectsGroups where the given user is a member of.groupMembers(List<String> groupMemberUserIds) Only selectsGroups where the given users are a member of.Only selectGroups with the given name.groupNameLike(String groupNameLike) Only selectGroups where the name matches the given parameter.groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase) Only selectGroups where the name matches the given parameter (ignoring case).Only selectGroups which have the given type.Order by group id (needs to be followed byQuery.asc()orQuery.desc()).Order by group name (needs to be followed byQuery.asc()orQuery.desc()).Order by group type (needs to be followed byQuery.asc()orQuery.desc()).
-
Method Details
-
groupId
Only selectGroups with the given id. -
groupIds
Only selectGroups with the given ids. -
groupName
Only selectGroups with the given name. -
groupNameLike
Only selectGroups where the name matches the given parameter. The syntax to use is that of SQL, eg. %test%. -
groupNameLikeIgnoreCase
Only selectGroups where the name matches the given parameter (ignoring case). The syntax to use is that of SQL, eg. %test%. -
groupType
Only selectGroups which have the given type. -
groupMember
Only selectsGroups where the given user is a member of. -
groupMembers
Only selectsGroups where the given users are a member of. -
orderByGroupId
GroupQuery orderByGroupId()Order by group id (needs to be followed byQuery.asc()orQuery.desc()). -
orderByGroupName
GroupQuery orderByGroupName()Order by group name (needs to be followed byQuery.asc()orQuery.desc()). -
orderByGroupType
GroupQuery orderByGroupType()Order by group type (needs to be followed byQuery.asc()orQuery.desc()).
-