Package com.flowable.core.idm.api
Interface PlatformGroupQuery
- All Superinterfaces:
Query<PlatformGroupQuery,
PlatformGroup>
- All Known Implementing Classes:
LdapGroupQuery
,PlatformGroupQueryImpl
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionOnly selectPlatformGroup
s with the given id.Only selectPlatformGroup
s with the given ids.Only selectPlatformGroup
s which have the given key.Only selectPlatformGroup
s which have the given keys.groupMember
(String groupMemberUserId) Only selectsPlatformGroup
s where the given user is a member of.groupMembers
(List<String> groupMemberUserIds) Only selectsPlatformGroup
s where the given users are a member of.Only selectPlatformGroup
s with the given name.groupNameLike
(String groupNameLike) Only selectPlatformGroup
s where the name matches the given parameter.groupNameLikeIgnoreCase
(String groupNameLikeIgnoreCase) Only selectPlatformGroup
s where the name matches the given parameter (ignoring case).groupTenantId
(String tenantId) Only selectPlatformGroup
s which have the given tenant id.Only selectPlatformGroup
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()
).Only selectPlatformGroup
s which have no tenant id.
-
Method Details
-
groupId
Only selectPlatformGroup
s with the given id. -
groupIds
Only selectPlatformGroup
s with the given ids. -
groupName
Only selectPlatformGroup
s with the given name. -
groupNameLike
Only selectPlatformGroup
s where the name matches the given parameter. The syntax to use is that of SQL, eg. %test%. -
groupNameLikeIgnoreCase
Only selectPlatformGroup
s where the name matches the given parameter (ignoring case). The syntax to use is that of SQL, eg. %test%. -
groupType
Only selectPlatformGroup
s which have the given type. -
groupKey
Only selectPlatformGroup
s which have the given key. -
groupKeys
Only selectPlatformGroup
s which have the given keys. -
groupTenantId
Only selectPlatformGroup
s which have the given tenant id. -
withoutTenantId
PlatformGroupQuery withoutTenantId()Only selectPlatformGroup
s which have no tenant id. -
groupMember
Only selectsPlatformGroup
s where the given user is a member of. -
groupMembers
Only selectsPlatformGroup
s where the given users are a member of. -
orderByGroupId
PlatformGroupQuery orderByGroupId()Order by group id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByGroupName
PlatformGroupQuery orderByGroupName()Order by group name (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByGroupType
PlatformGroupQuery orderByGroupType()Order by group type (needs to be followed byQuery.asc()
orQuery.desc()
).
-