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