Package | Description |
---|---|
org.gitlab4j.api |
Modifier and Type | Method and Description |
---|---|
Pager<Namespace> |
NamespaceApi.findNamespaces(String query,
int itemsPerPage)
Get a Pager of all namespaces that match a string in their name or path.
|
Pager<User> |
UserApi.findUsers(String emailOrUsername,
int itemsPerPage)
Search users by Email or username and return a Pager
GET /users?search=:email_or_username
|
Pager<Branch> |
RepositoryApi.getBranches(Integer projectId,
int itemsPerPage)
Get a Pager of repository branches from a project, sorted by name alphabetically.
|
Pager<Commit> |
CommitsApi.getCommits(int projectId,
int itemsPerPage)
Get a Pager of repository commits in a project.
|
Pager<Group> |
GroupApi.getGroups(int itemsPerPage)
Get a Pager of groups.
|
Pager<Group> |
GroupApi.getGroups(String search,
int itemsPerPage)
Get all groups that match your string in their name or path.
|
Pager<ProjectHook> |
ProjectApi.getHooks(Integer projectId,
int itemsPerPage)
Get Pager of project hooks.
|
Pager<Issue> |
ProjectApi.getIssues(Integer projectId,
int itemsPerPage)
Get a Pager of project's issues.
|
Pager<Project> |
ProjectApi.getMemberProjects(int itemsPerPage)
Get a Pager of projects that the authenticated user is a member of.
|
Pager<Member> |
ProjectApi.getMembers(Integer projectId,
int itemsPerPage)
Get a Pager of project team members.
|
Pager<Member> |
GroupApi.getMembers(int groupId,
int itemsPerPage)
Get a Pager of group members viewable by the authenticated user.
|
Pager<MergeRequest> |
MergeRequestApi.getMergeRequests(Integer projectId,
int itemsPerPage)
Get all merge requests for the specified project.
|
Pager<Namespace> |
NamespaceApi.getNamespaces(int itemsPerPage)
Get a Pager of the namespaces of the authenticated user.
|
Pager<Project> |
ProjectApi.getOwnedProjects(int itemsPerPage)
Get a Pager of projects owned by the authenticated user.
|
Pager<Pipeline> |
PipelineApi.getPipelines(int projectId,
Constants.PipelineScope scope,
PipelineStatus status,
String ref,
boolean yamlErrors,
String name,
String username,
Constants.PipelineOrderBy orderBy,
Constants.SortOrder sort,
int itemsPerPage)
Get a Pager of pipelines in a project.
|
Pager<Pipeline> |
PipelineApi.getPipelines(int projectId,
int itemsPerPage)
Get a Pager of pipelines in a project.
|
Pager<Event> |
ProjectApi.getProjectEvents(Integer projectId,
int itemsPerPage)
Get a Pager of project events for specific project.
|
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.
|
Pager<Project> |
ProjectApi.getProjects(int itemsPerPage)
Get a Pager instance of projects accessible by the authenticated user.
|
Pager<Project> |
GroupApi.getProjects(int groupId,
int itemsPerPage)
Get a Pager of projects belonging to the specified group ID.
|
Pager<Project> |
ProjectApi.getProjects(String search,
int itemsPerPage)
Get a Pager of projects accessible by the authenticated user that match the provided search string.
|
Pager<Project> |
ProjectApi.getStarredProjects(int itemsPerPage)
Get a Pager of projects starred by the authenticated user.
|
Pager<Tag> |
RepositoryApi.getTags(Integer projectId,
int itemsPerPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
Pager<TreeItem> |
RepositoryApi.getTree(Integer projectId,
int itemsPerPage)
Get a Pager of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Integer projectId,
String filePath,
String refName,
Boolean recursive,
int itemsPerPage)
Get a Pager of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Integer projectId,
String filePath,
String refName,
int itemsPerPage)
Get a Pager of repository files and directories in a project.
|
Pager<User> |
UserApi.getUsers(int itemsPerPage)
Get a Pager of users.
|
Copyright © 2017. All rights reserved.