public interface PlatformGroupQuery extends Query<PlatformGroupQuery,PlatformGroup>
Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
PlatformGroupQuery |
groupId(String groupId)
Only select
PlatformGroups with the given id. |
PlatformGroupQuery |
groupIds(List<String> groupIds)
Only select
PlatformGroups with the given ids. |
PlatformGroupQuery |
groupKey(String groupKey)
Only select
PlatformGroups which have the given key. |
PlatformGroupQuery |
groupKeys(List<String> groupKeys)
Only select
PlatformGroups which have the given keys. |
PlatformGroupQuery |
groupMember(String groupMemberUserId)
Only selects
PlatformGroups where the given user is a member of. |
PlatformGroupQuery |
groupMembers(List<String> groupMemberUserIds)
Only selects
PlatformGroups where the given users are a member of. |
PlatformGroupQuery |
groupName(String groupName)
Only select
PlatformGroups with the given name. |
PlatformGroupQuery |
groupNameLike(String groupNameLike)
Only select
PlatformGroups where the name matches the given parameter. |
PlatformGroupQuery |
groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
Only select
PlatformGroups where the name matches the given parameter (ignoring case). |
PlatformGroupQuery |
groupTenantId(String tenantId)
Only select
PlatformGroups which have the given tenant id. |
PlatformGroupQuery |
groupType(String groupType)
Only select
PlatformGroups which have the given type. |
PlatformGroupQuery |
orderByGroupId()
Order by group id (needs to be followed by
Query.asc() or Query.desc()). |
PlatformGroupQuery |
orderByGroupName()
Order by group name (needs to be followed by
Query.asc() or Query.desc()). |
PlatformGroupQuery |
orderByGroupType()
Order by group type (needs to be followed by
Query.asc() or Query.desc()). |
PlatformGroupQuery |
withoutTenantId()
Only select
PlatformGroups which have no tenant id. |
PlatformGroupQuery groupId(String groupId)
PlatformGroups with the given id.PlatformGroupQuery groupIds(List<String> groupIds)
PlatformGroups with the given ids.PlatformGroupQuery groupName(String groupName)
PlatformGroups with the given name.PlatformGroupQuery groupNameLike(String groupNameLike)
PlatformGroups where the name matches the given parameter. The syntax to use is that of SQL, eg. %test%.PlatformGroupQuery groupNameLikeIgnoreCase(String groupNameLikeIgnoreCase)
PlatformGroups where the name matches the given parameter (ignoring case). The syntax to use is that of SQL, eg. %test%.PlatformGroupQuery groupType(String groupType)
PlatformGroups which have the given type.PlatformGroupQuery groupKey(String groupKey)
PlatformGroups which have the given key.PlatformGroupQuery groupKeys(List<String> groupKeys)
PlatformGroups which have the given keys.PlatformGroupQuery groupTenantId(String tenantId)
PlatformGroups which have the given tenant id.PlatformGroupQuery withoutTenantId()
PlatformGroups which have no tenant id.PlatformGroupQuery groupMember(String groupMemberUserId)
PlatformGroups where the given user is a member of.PlatformGroupQuery groupMembers(List<String> groupMemberUserIds)
PlatformGroups where the given users are a member of.PlatformGroupQuery orderByGroupId()
Query.asc() or Query.desc()).PlatformGroupQuery orderByGroupName()
Query.asc() or Query.desc()).PlatformGroupQuery orderByGroupType()
Query.asc() or Query.desc()).