Uses of Class
org.miaixz.bus.gitlab.models.GroupFilter
Packages that use GroupFilter
-
Uses of GroupFilter in org.miaixz.bus.gitlab
Methods in org.miaixz.bus.gitlab with parameters of type GroupFilterModifier and TypeMethodDescriptionGroupApi.getDescendantGroups(Object groupIdOrPath, GroupFilter filter) Get a list of visible descendant groups of a given group for the authenticated user using the provided filter.GroupApi.getDescendantGroups(Object groupIdOrPath, GroupFilter filter, int itemsPerPage) Get a Pager of visible descendant groups of a given group for the authenticated user using the provided filter.GroupApi.getDescendantGroupsStream(Object groupIdOrPath, GroupFilter filter) Get a Stream of visible descendant groups of a given group for the authenticated user using the provided filter.GroupApi.getGroups(GroupFilter filter) Get a list of visible groups for the authenticated user using the provided filter.GroupApi.getGroups(GroupFilter filter, int itemsPerPage) Get a Pager of visible groups for the authenticated user using the provided filter.GroupApi.getGroupsStream(GroupFilter filter) Get a Stream of visible groups for the authenticated user using the provided filter. -
Uses of GroupFilter in org.miaixz.bus.gitlab.models
Methods in org.miaixz.bus.gitlab.models that return GroupFilterModifier and TypeMethodDescriptionGroupFilter.withAllAvailable(Boolean allAvailable) Show all the groups you have access to (defaults to false for authenticated users, true for admin).GroupFilter.withAllAvailabley(Boolean allAvailable) Deprecated.GroupFilter.withCustomAttributeFilter(String key, String value) Results must have custom attribute (admins only).GroupFilter.withCustomAttributes(Boolean withCustomAttributes) Include custom attributes in response (admins only).GroupFilter.withMinAccessLevel(AccessLevel accessLevel) Limit to groups where current user has at least this access level.GroupFilter.withOrderBy(Constants.GroupOrderBy orderBy) Return groups ordered by id, name, path, created_at, updated_at, or last_activity_at fields.Limit by groups explicitly owned by the current userGroupFilter.withSearch(String search) Return list of groups matching the search criteria.GroupFilter.withSkipGroups(List<Integer> skipGroups) Do not include the provided groups IDs.GroupFilter.withSortOder(Constants.SortOrder sort) Return groups sorted in asc or desc order.GroupFilter.withStatistics(Boolean statistics) Include group statistics (admins only).GroupFilter.withTopLevelOnly(Boolean topLevelOnly) Limit by groups which are top level groups
withAllAvailable(Boolean)instead