Package com.flowable.core.idm.api
Interface PlatformGroupQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<PlatformGroupQuery,PlatformGroup>
- All Known Implementing Classes:
LdapGroupQuery
,PlatformGroupQueryImpl
public interface PlatformGroupQuery extends org.flowable.common.engine.api.query.Query<PlatformGroupQuery,PlatformGroup>
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description PlatformGroupQuery
groupId(java.lang.String groupId)
Only selectPlatformGroup
s with the given id.PlatformGroupQuery
groupIds(java.util.List<java.lang.String> groupIds)
Only selectPlatformGroup
s with the given ids.PlatformGroupQuery
groupKey(java.lang.String groupKey)
Only selectPlatformGroup
s which have the given key.PlatformGroupQuery
groupMember(java.lang.String groupMemberUserId)
Only selectsPlatformGroup
s where the given user is a member of.PlatformGroupQuery
groupMembers(java.util.List<java.lang.String> groupMemberUserIds)
Only selectsPlatformGroup
s where the given users are a member of.PlatformGroupQuery
groupName(java.lang.String groupName)
Only selectPlatformGroup
s with the given name.PlatformGroupQuery
groupNameLike(java.lang.String groupNameLike)
Only selectPlatformGroup
s where the name matches the given parameter.PlatformGroupQuery
groupNameLikeIgnoreCase(java.lang.String groupNameLikeIgnoreCase)
Only selectPlatformGroup
s where the name matches the given parameter (ignoring case).PlatformGroupQuery
groupTenantId(java.lang.String tenantId)
Only selectPlatformGroup
s which have the given tenant id.PlatformGroupQuery
groupType(java.lang.String groupType)
Only selectPlatformGroup
s which have the given type.PlatformGroupQuery
orderByGroupId()
Order by group id (needs to be followed byQuery.asc()
orQuery.desc()
).PlatformGroupQuery
orderByGroupName()
Order by group name (needs to be followed byQuery.asc()
orQuery.desc()
).PlatformGroupQuery
orderByGroupType()
Order by group type (needs to be followed byQuery.asc()
orQuery.desc()
).PlatformGroupQuery
withoutTenantId()
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. -
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()
).
-