Uses of Class
org.miaixz.bus.gitlab.models.ProjectFilter
Packages that use ProjectFilter
-
Uses of ProjectFilter in org.miaixz.bus.gitlab
Methods in org.miaixz.bus.gitlab with parameters of type ProjectFilterModifier and TypeMethodDescriptionProjectApi.getProjects(ProjectFilter filter) Get a list of all visible projects across GitLab for the authenticated user using the provided filter.ProjectApi.getProjects(ProjectFilter filter, int itemsPerPage) Get a Pager of all visible projects across GitLab for the authenticated user using the provided filter.ProjectApi.getProjects(ProjectFilter filter, int page, int perPage) Get a list of all visible projects across GitLab for the authenticated user in the specified page range using the provided filter.ProjectApi.getProjectsStream(ProjectFilter filter) Get a Stream of all visible projects across GitLab for the authenticated user using the provided filter.ProjectApi.getUserProjects(Object userIdOrUsername, ProjectFilter filter) Get a list of visible projects owned by the given user.ProjectApi.getUserProjects(Object userIdOrUsername, ProjectFilter filter, int itemsPerPage) Get a Pager of visible projects owned by the given user.ProjectApi.getUserProjects(Object userIdOrUsername, ProjectFilter filter, int page, int perPage) Get a list of visible projects owned by the given user in the specified page range.ProjectApi.getUserProjectsStream(Object userIdOrUsername, ProjectFilter filter) Get a Stream of visible projects owned by the given user. -
Uses of ProjectFilter in org.miaixz.bus.gitlab.models
Methods in org.miaixz.bus.gitlab.models that return ProjectFilterModifier and TypeMethodDescriptionProjectFilter.minAccessLevel(AccessLevel minAccessLevel) Deprecated.ProjectFilter.withArchived(Boolean archived) Limit by archived status.ProjectFilter.withCustomAttributes(Boolean withCustomAttributes) Include custom attributes in response (admins only).ProjectFilter.withIdAfter(Long idAfter) Limit results to projects with IDs greater than the specified projectID.ProjectFilter.withIdBefore(Long idBefore) Limit results to projects with IDs less than the specified project ID.ProjectFilter.withImported(Boolean imported) Limit results to projects which were imported from external systems by current user.ProjectFilter.withIssuesEnabled(Boolean withIssuesEnabled) Limit by enabled issues featureProjectFilter.withLastActivityAfter(Date lastActivityAfter) Limit results to projects with last_activity after specified time.ProjectFilter.withLastActivityBefore(Date lastActivityBefore) Limit results to projects with last_activity before specified time.ProjectFilter.withMembership(Boolean membership) Limit by projects that the current user is a member ofProjectFilter.withMergeRequestsEnabled(Boolean withMergeRequestsEnabled) Limit by enabled merge requests featureProjectFilter.withMinAccessLevel(AccessLevel minAccessLevel) Limit by current user minimal access level.ProjectFilter.withOrderBy(Constants.ProjectOrderBy orderBy) Return projects ordered by id, name, path, created_at, updated_at, or last_activity_at fields.Limit by projects explicitly owned by the current userProjectFilter.withProgrammingLanguage(String withProgrammingLanguage) Limit by projects which use the given programming language.ProjectFilter.withRepositoryChecksumFailed(Boolean repositoryChecksumFailed) Limit projects where the repository checksum calculation has failed.ProjectFilter.withRepositoryStorage(String repositoryStorage) Limit results to projects stored on the specified repository_storage.ProjectFilter.withSearch(String search) Return list of projects matching the search criteria.ProjectFilter.withSearchNamespaces(Boolean searchNamespaces) Include ancestor namespaces when matching search criteria.ProjectFilter.withSimple(Boolean simple) Return only limited fields for each project.ProjectFilter.withSortOder(Constants.SortOrder sort) Return projects sorted in asc or desc order.ProjectFilter.withStarred(Boolean starred) Limit by projects starred by the current user.ProjectFilter.withStatistics(Boolean statistics) Include project statistics.Limit results to projects that match all of given topics.ProjectFilter.withTopicId(Integer topic_id) Limit results to projects with the assigned topic given by the topic ID.ProjectFilter.withVisibility(Visibility visibility) Limit by visibility public, internal, or private.ProjectFilter.withWikiChecksumFailed(Boolean wikiChecksumFailed) Limit projects where the wiki checksum calculation has failed.
getComponentAt