Package org.flowable.idm.api
Interface GroupQuery
- All Superinterfaces:
Query<GroupQuery,
Group>
- All Known Implementing Classes:
GroupQueryImpl
Allows to programmatically query for
Group
s.- 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 selectGroup
s with the given id.Only selectGroup
s with the given ids.groupMember
(String groupMemberUserId) Only selectsGroup
s where the given user is a member of.groupMembers
(List<String> groupMemberUserIds) Only selectsGroup
s where the given users are a member of.Only selectGroup
s with the given name.groupNameLike
(String groupNameLike) Only selectGroup
s where the name matches the given parameter.groupNameLikeIgnoreCase
(String groupNameLikeIgnoreCase) Only selectGroup
s where the name matches the given parameter (ignoring case).Only selectGroup
s 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 selectGroup
s with the given id. -
groupIds
Only selectGroup
s with the given ids. -
groupName
Only selectGroup
s with the given name. -
groupNameLike
Only selectGroup
s where the name matches the given parameter. The syntax to use is that of SQL, eg. %test%. -
groupNameLikeIgnoreCase
Only selectGroup
s where the name matches the given parameter (ignoring case). The syntax to use is that of SQL, eg. %test%. -
groupType
Only selectGroup
s which have the given type. -
groupMember
Only selectsGroup
s where the given user is a member of. -
groupMembers
Only selectsGroup
s 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()
).
-