List<Project> |
ProjectApi.getForks(Object projectIdOrPath) |
Get a list of projects that were forked from the specified project.
|
Pager<Project> |
ProjectApi.getForks(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of projects that were forked from the specified project.
|
List<Project> |
ProjectApi.getForks(Object projectIdOrPath,
int page,
int perPage) |
Get a list of projects that were forked from the specified project and in the specified page range.
|
Stream<Project> |
ProjectApi.getForksStream(Object projectIdOrPath) |
Get a Stream of projects that were forked from the specified project.
|
List<Project> |
ProjectApi.getMemberProjects() |
Get a list of projects that the authenticated user is a member of.
|
Pager<Project> |
ProjectApi.getMemberProjects(int itemsPerPage) |
Get a Pager of projects that the authenticated user is a member of.
|
List<Project> |
ProjectApi.getMemberProjects(int page,
int perPage) |
Get a list of projects that the authenticated user is a member of in the specified page range.
|
Stream<Project> |
ProjectApi.getMemberProjectsStream() |
Get a Stream of projects that the authenticated user is a member of.
|
Optional<Project> |
ProjectApi.getOptionalProject(Object projectIdOrPath) |
Get an Optional instance with the value for the specific project, which is owned by the authentication user.
|
Optional<Project> |
ProjectApi.getOptionalProject(Object projectIdOrPath,
Boolean includeStatistics) |
Get an Optional instance with the value for the specific project, which is owned by the authentication user.
|
Optional<Project> |
ProjectApi.getOptionalProject(Object projectIdOrPath,
Boolean includeStatistics,
Boolean includeLicense,
Boolean withCustomAttributes) |
Get an Optional instance with the value for the specific project, which is owned by the authentication user.
|
Optional<Project> |
ProjectApi.getOptionalProject(String namespace,
String project) |
Get an Optional instance with the value for the specific project, which is owned by the authentication user.
|
Optional<Project> |
ProjectApi.getOptionalProject(String namespace,
String project,
Boolean includeStatistics) |
Get an Optional instance with the value for the specific project, which is owned by the authentication user.
|
List<Project> |
ProjectApi.getOwnedProjects() |
Get a list of projects owned by the authenticated user.
|
Pager<Project> |
ProjectApi.getOwnedProjects(int itemsPerPage) |
Get a Pager of projects owned by the authenticated user.
|
List<Project> |
ProjectApi.getOwnedProjects(int page,
int perPage) |
Get a list of projects owned by the authenticated user in the specified page range.
|
Stream<Project> |
ProjectApi.getOwnedProjectsStream() |
Get a Stream of projects owned by the authenticated user.
|
List<Project> |
GroupApi.getProjects(Object groupIdOrPath) |
Get a list of projects belonging to the specified group ID.
|
Pager<Project> |
GroupApi.getProjects(Object groupIdOrPath,
int itemsPerPage) |
Get a Pager of projects belonging to the specified group ID.
|
List<Project> |
GroupApi.getProjects(Object groupIdOrPath,
int page,
int perPage) |
Get a list of projects belonging to the specified group ID in the specified page range.
|
List<Project> |
GroupApi.getProjects(Object groupIdOrPath,
GroupProjectsFilter filter) |
Get a list of projects belonging to the specified group ID and filter.
|
Pager<Project> |
GroupApi.getProjects(Object groupIdOrPath,
GroupProjectsFilter filter,
int itemsPerPage) |
Get a Pager of projects belonging to the specified group ID and filter.
|
List<Project> |
ProjectApi.getProjects() |
Get a list of projects accessible by the authenticated user.
|
Pager<Project> |
ProjectApi.getProjects(int itemsPerPage) |
Get a Pager instance of projects accessible by the authenticated user.
|
List<Project> |
ProjectApi.getProjects(int page,
int perPage) |
Get a list of projects accessible by the authenticated user and in the specified page range.
|
List<Project> |
ProjectApi.getProjects(Boolean archived,
Visibility visibility,
String orderBy,
String sort,
String search,
Boolean simple,
Boolean owned,
Boolean membership,
Boolean starred,
Boolean statistics) |
Deprecated.
|
List<Project> |
ProjectApi.getProjects(Boolean archived,
Visibility visibility,
Constants.ProjectOrderBy orderBy,
Constants.SortOrder sort,
String search,
Boolean simple,
Boolean owned,
Boolean membership,
Boolean starred,
Boolean statistics) |
Get a list of projects accessible by the authenticated user and matching the supplied filter parameters.
|
Pager<Project> |
ProjectApi.getProjects(Boolean archived,
Visibility visibility,
Constants.ProjectOrderBy orderBy,
Constants.SortOrder sort,
String search,
Boolean simple,
Boolean owned,
Boolean membership,
Boolean starred,
Boolean statistics,
int itemsPerPage) |
Get a Pager of projects accessible by the authenticated user and matching the supplied filter parameters.
|
List<Project> |
ProjectApi.getProjects(Boolean archived,
Visibility visibility,
Constants.ProjectOrderBy orderBy,
Constants.SortOrder sort,
String search,
Boolean simple,
Boolean owned,
Boolean membership,
Boolean starred,
Boolean statistics,
int page,
int perPage) |
Get a list of projects accessible by the authenticated user and matching the supplied filter parameters.
|
List<Project> |
ProjectApi.getProjects(String search) |
Get a list of projects accessible by the authenticated user that match the provided search string.
|
Pager<Project> |
ProjectApi.getProjects(String search,
int itemsPerPage) |
Get a Pager of projects accessible by the authenticated user that match the provided search string.
|
List<Project> |
ProjectApi.getProjects(String search,
int page,
int perPage) |
Get a list of projects accessible by the authenticated user that match the provided search string.
|
List<Project> |
ProjectApi.getProjects(ProjectFilter filter) |
Get a list of all visible projects across GitLab for the authenticated user using the provided filter.
|
Pager<Project> |
ProjectApi.getProjects(ProjectFilter filter,
int itemsPerPage) |
Get a Pager of all visible projects across GitLab for the authenticated user using the provided filter.
|
List<Project> |
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.
|
Stream<Project> |
GroupApi.getProjectsStream(Object groupIdOrPath) |
Get a Stream of projects belonging to the specified group ID.
|
Stream<Project> |
GroupApi.getProjectsStream(Object groupIdOrPath,
GroupProjectsFilter filter) |
Get a Stream of projects belonging to the specified group ID and filter.
|
Stream<Project> |
ProjectApi.getProjectsStream() |
Get a Stream of projects accessible by the authenticated user.
|
Stream<Project> |
ProjectApi.getProjectsStream(String search) |
Get a Stream of projects accessible by the authenticated user that match the provided search string.
|
Stream<Project> |
ProjectApi.getProjectsStream(ProjectFilter filter) |
Get a Stream of all visible projects across GitLab for the authenticated user using the provided filter.
|
List<Project> |
ProjectApi.getStarredProjects() |
Get a list of projects starred by the authenticated user.
|
Pager<Project> |
ProjectApi.getStarredProjects(int itemsPerPage) |
Get a Pager of projects starred by the authenticated user.
|
List<Project> |
ProjectApi.getStarredProjects(int page,
int perPage) |
Get a list of projects starred by the authenticated user in the specified page range.
|
Stream<Project> |
ProjectApi.getStarredProjectsStream() |
Get a Stream of projects starred by the authenticated user.
|
List<Project> |
ProjectApi.getUserProjects(Object userIdOrUsername,
ProjectFilter filter) |
Get a list of visible projects owned by the given user.
|
Pager<Project> |
ProjectApi.getUserProjects(Object userIdOrUsername,
ProjectFilter filter,
int itemsPerPage) |
Get a Pager of visible projects owned by the given user.
|
List<Project> |
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.
|
Stream<Project> |
ProjectApi.getUserProjectsStream(Object userIdOrUsername,
ProjectFilter filter) |
Get a Stream of visible projects owned by the given user.
|
ProjectApi.createProject(String, Integer, String, Boolean, Boolean, Boolean, Boolean, Visibility, Integer, String)