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
|
Pager<AccessRequest> |
ProjectApi.getAccessRequests(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of the project access requests viewable by the authenticated user.
|
Pager<AccessRequest> |
GroupApi.getAccessRequests(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of the group access requests viewable by the authenticated user.
|
Pager<User> |
UserApi.getActiveUsers(int itemsPerPage)
Get a Pager of active users.
|
Pager<License> |
LicenseApi.getAllLicenses(int itemsPerPage)
Get a Pager of all licenses.
|
Pager<Member> |
ProjectApi.getAllMembers(Object projectIdOrPath,
int itemsPerPage)
Gets a Pager of project members viewable by the authenticated user,
including inherited members through ancestor groups.
|
Pager<Member> |
GroupApi.getAllMembers(Object groupIdOrPath,
int itemsPerPage)
Gets a Pager of group members viewable by the authenticated user, including inherited members
through ancestor groups.
|
Pager<Member> |
ProjectApi.getAllMembers(Object projectIdOrPath,
String query,
List<Integer> userIds,
int itemsPerPage)
Gets a Pager of project members viewable by the authenticated user,
including inherited members through ancestor groups.
|
Pager<Member> |
GroupApi.getAllMembers(Object groupIdOrPath,
String query,
List<Integer> userIds,
int itemsPerPage)
Gets a Pager of group members viewable by the authenticated user, including inherited members
through ancestor groups.
|
Pager<Runner> |
RunnersApi.getAllRunners(int itemsPerPage)
Get a list of all runners in the GitLab instance (specific and shared).
|
Pager<Runner> |
RunnersApi.getAllRunners(Runner.RunnerType type,
Runner.RunnerStatus status,
int itemsPerPage)
Get a list of all runners in the GitLab instance (specific and shared).
|
Pager<Application> |
ApplicationsApi.getApplications(int itemsPerPage)
Get a Pager of all OAUTH applications.
|
Pager<ApprovalRule> |
ProjectApi.getApprovalRules(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of the project-level approval rules.
|
Pager<ApprovalRule> |
MergeRequestApi.getApprovalRules(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of the merge request level approval rules.
|
Pager<Event> |
EventsApi.getAuthenticatedUserEvents(Constants.ActionType action,
Constants.TargetType targetType,
Date before,
Date after,
Constants.SortOrder sortOrder,
int itemsPerPage)
Get a list of events for the authenticated user and in the specified page range.
|
Pager<User> |
UserApi.getBlockedUsers(int itemsPerPage)
Get a Pager of blocked users.
|
Pager<BoardList> |
BoardsApi.getBoardLists(Object projectIdOrPath,
Integer boardId,
int itemsPerPage)
Get a Pager of the board’s lists.
|
Pager<Board> |
BoardsApi.getBoards(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of all issue boards for the specified project.
|
Pager<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of repository branches from a project, sorted by name alphabetically.
|
Pager<Branch> |
RepositoryApi.getBranches(Object projectIdOrPath,
String search,
int itemsPerPage)
Get a Pager of repository branches from a project, sorted by name alphabetically, filter by the search term.
|
Pager<MergeRequest> |
IssuesApi.getClosedByMergeRequests(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Get a Pager containing all the merge requests that will close issue when merged.
|
Pager<Issue> |
MergeRequestApi.getClosesIssues(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager containing all the issues that would be closed by merging the provided merge request.
|
Pager<Comment> |
CommitsApi.getComments(Object projectIdOrPath,
String sha,
int itemsPerPage)
Get a Pager of the comments of a commit in a project.
|
Pager<Discussion> |
DiscussionsApi.getCommitDiscussionsPager(Object projectIdOrPath,
String commitSha,
int itemsPerPage)
Get a Pager of Discussion instances for the specified commit.
|
Pager<CommitRef> |
CommitsApi.getCommitRefs(Object projectIdOrPath,
String sha,
CommitRef.RefType refType,
int itemsPerPage)
Get a Pager of references (from branches or tags) a commit is pushed to.
|
Pager<CommitRef> |
CommitsApi.getCommitRefs(Object projectIdOrPath,
String sha,
int itemsPerPage)
Get a Pager of references (from branches or tags) a commit is pushed to.
|
Pager<Commit> |
CommitsApi.getCommits(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of all repository commits in a project.
|
Pager<Commit> |
MergeRequestApi.getCommits(Object projectIdOrPath,
int mergeRequestIid,
int itemsPerPage)
Get a Pager of merge request commits.
|
Pager<Commit> |
CommitsApi.getCommits(Object projectIdOrPath,
String ref,
Date since,
Date until,
int itemsPerPage)
Get a Pager of repository commits in a project.
|
Pager<Commit> |
CommitsApi.getCommits(Object projectIdOrPath,
String ref,
Date since,
Date until,
String path,
Boolean all,
Boolean withStats,
Boolean firstParent,
int itemsPerPage)
Get a Pager of the specified repository commits in a project
|
Pager<Commit> |
CommitsApi.getCommits(Object projectIdOrPath,
String ref,
Date since,
Date until,
String path,
int itemsPerPage)
Get a Pager of repository commits in a project
|
Pager<CommitStatus> |
CommitsApi.getCommitStatuses(Object projectIdOrPath,
String sha,
CommitStatusFilter filter,
int itemsPerPage)
Get a Pager of repository commit statuses that meet the provided filter.
|
Pager<Contributor> |
RepositoryApi.getContributors(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of contributors from a project.
|
Pager<DeployKey> |
DeployKeysApi.getDeployKeys(int itemsPerPage)
Get a Pager of all deploy keys across all projects of the GitLab instance.
|
Pager<DeployToken> |
DeployTokensApi.getDeployTokens(int itemsPerPage)
Get a Pager of all deploy tokens across all projects of the GitLab instance.
|
Pager<Diff> |
CommitsApi.getDiff(Object projectIdOrPath,
String sha,
int itemsPerPage)
Get the Pager of diffs of a commit in a project.
|
Pager<Todo> |
TodosApi.getDoneTodos(int itemsPerPage)
Get a Pager of done todos for the current user.
|
Pager<Environment> |
EnvironmentsApi.getEnvironments(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of all environments for a given project.
|
Pager<Discussion> |
DiscussionsApi.getEpicDiscussionsPager(Object projectIdOrPath,
Integer epicId,
int itemsPerPage)
Get a Pager of Discussion instances for the specified epic.
|
Pager<Epic> |
EpicsApi.getEpicIssues(Object groupIdOrPath,
Integer epicIid,
int itemsPerPage)
Get a Pager of all issues that are assigned to an epic and the authenticated user has access to.
|
Pager<LabelEvent> |
ResourceLabelEventsApi.getEpicLabelEvents(Object projectIdOrPath,
Integer epicId,
int itemsPerPage)
Gets a Pager of all label events for the specified epic.
|
Pager<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of all epics of the requested group and its subgroups.
|
Pager<Epic> |
EpicsApi.getEpics(Object groupIdOrPath,
Integer authorId,
String labels,
Constants.EpicOrderBy orderBy,
Constants.SortOrder sortOrder,
String search,
int itemsPerPage)
Get a Pager of all epics of the requested group and its subgroups.
|
Pager<Project> |
ProjectApi.getForks(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of projects that were forked from the specified project.
|
Pager<DeployToken> |
DeployTokensApi.getGroupDeployTokens(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of the deploy tokens for the specified group.
|
Pager<Issue> |
IssuesApi.getGroupIssues(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of groups's issues.
|
Pager<Issue> |
MilestonesApi.getGroupIssues(Object groupIdOrPath,
Integer milestoneId,
int itemsPerPage)
Get the Pager of issues associated with the specified group milestone.
|
Pager<Issue> |
IssuesApi.getGroupIssues(Object groupIdOrPath,
IssueFilter filter,
int itemsPerPage)
Get a list of groups's issues.
|
Pager<Label> |
LabelsApi.getGroupLabels(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of all labels of the specified group.
|
Pager<Milestone> |
MilestonesApi.getGroupMilestones(Object groupIdOrPath,
int itemsPerPage)
Get a Page of group milestones.
|
Pager<Group> |
GroupApi.getGroups(GroupFilter filter,
int itemsPerPage)
Get a Pager of visible groups for the authenticated user using the provided filter.
|
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(Object projectIdOrPath,
int itemsPerPage)
Get Pager of project hooks.
|
Pager<Discussion> |
DiscussionsApi.getIssueDiscussionsPager(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Get a Pager of Discussion instances for the specified issue.
|
Pager<LabelEvent> |
ResourceLabelEventsApi.getIssueLabelEvents(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Gets a Pager of all label events for a single issue.
|
Pager<Issue> |
IssuesApi.getIssueLinks(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Get a Pager of related issues of a given issue, sorted by the relationship creation datetime (ascending).
|
Pager<Note> |
NotesApi.getIssueNotes(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Get a Pager of issues's notes.
|
Pager<Issue> |
IssuesApi.getIssues(int itemsPerPage)
Get a Pager of all issues the authenticated user has access to.
|
Pager<Issue> |
IssuesApi.getIssues(IssueFilter filter,
int itemsPerPage)
Get all issues the authenticated user has access to.
|
Pager<Issue> |
ProjectApi.getIssues(Object projectIdOrPath,
int itemsPerPage)
Deprecated.
Will be removed in version 5.0, replaced by
IssuesApi.getIssues(Object, int) |
Pager<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project's issues.
|
Pager<Issue> |
MilestonesApi.getIssues(Object projectIdOrPath,
Integer milestoneId,
int itemsPerPage)
Get a Pager of issues associated with the specified milestone.
|
Pager<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
IssueFilter filter,
int itemsPerPage)
Get a list of project's issues.
|
Pager<Job> |
RunnersApi.getJobs(Integer runnerId,
int itemsPerPage)
List jobs that are being processed or were processed by specified Runner.
|
Pager<Job> |
RunnersApi.getJobs(Integer runnerId,
JobStatus status,
int itemsPerPage)
List jobs that are being processed or were processed by specified Runner.
|
Pager<Job> |
JobApi.getJobs(Object projectIdOrPath,
Constants.JobScope scope,
int itemsPerPage)
Get a list of jobs in a project.
|
Pager<Job> |
JobApi.getJobs(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of jobs in a project.
|
Pager<Label> |
LabelsApi.getLabels(Object projectIdOrPath,
int itemsPerPage)
Deprecated.
Replaced by the
LabelsApi.getProjectLabels(Object, int) method. |
Pager<LicenseTemplate> |
LicenseTemplatesApi.getLicenseTemplates(Boolean popular,
int itemsPerPage)
Get a Pager of license templates.
|
Pager<LicenseTemplate> |
LicenseTemplatesApi.getLicenseTemplates(int itemsPerPage)
Get a Pager of all license templates.
|
Pager<Project> |
ProjectApi.getMemberProjects(int itemsPerPage)
Get a Pager of projects that the authenticated user is a member of.
|
Pager<Member> |
ProjectApi.getMembers(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project team members.
|
Pager<Member> |
GroupApi.getMembers(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of group members viewable by the authenticated user.
|
Pager<MergeRequestDiff> |
MergeRequestApi.getMergeRequestDiffs(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of merge request diff versions.
|
Pager<Discussion> |
DiscussionsApi.getMergeRequestDiscussionsPager(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of Discussion instances for the specified merge request.
|
Pager<LabelEvent> |
ResourceLabelEventsApi.getMergeRequestLabelEvents(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Gets a Pager of all label events for the specified merge request.
|
Pager<Note> |
NotesApi.getMergeRequestNotes(Object projectIdOrPath,
Integer mergeRequestIid,
Constants.SortOrder sortOrder,
Note.OrderBy orderBy,
int itemsPerPage)
Get a Pager of all notes for a single merge request
|
Pager<Note> |
NotesApi.getMergeRequestNotes(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of all notes for a single merge request
|
Pager<Pipeline> |
MergeRequestApi.getMergeRequestPipelines(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of pipelines for a merge request.
|
Pager<MergeRequest> |
MergeRequestApi.getMergeRequests(MergeRequestFilter filter,
int itemsPerPage)
Get all merge requests matching the filter.
|
Pager<MergeRequest> |
MergeRequestApi.getMergeRequests(Object projectIdOrPath,
Constants.MergeRequestState state,
int itemsPerPage)
Get all merge requests for the specified project.
|
Pager<MergeRequest> |
MergeRequestApi.getMergeRequests(Object projectIdOrPath,
int itemsPerPage)
Get all merge requests for the specified project.
|
Pager<MergeRequest> |
CommitsApi.getMergeRequests(Object projectIdOrPath,
String sha,
int itemsPerPage)
Get a Pager of Merge Requests related to the specified commit.
|
Pager<Milestone> |
MilestonesApi.getMilestones(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project milestones.
|
Pager<Namespace> |
NamespaceApi.getNamespaces(int itemsPerPage)
Get a Pager of the namespaces of the authenticated user.
|
Pager<Note> |
NotesApi.getNotes(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Deprecated.
As of release 4.7.0, replaced by
NotesApi.getIssueNotes(Object, Integer, int) |
Pager<Project> |
ProjectApi.getOwnedProjects(int itemsPerPage)
Get a Pager of projects owned by the authenticated user.
|
Pager<PackageFile> |
PackagesApi.getPackageFiles(Object projectIdOrPath,
Integer packageId,
int itemsPerPage)
Get a Pager of project package files.
|
Pager<Package> |
PackagesApi.getPackages(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project packages.
|
Pager<WikiPage> |
WikisApi.getPages(Object projectIdOrPath,
boolean withContent,
int itemsPerPage)
Get a Pager of pages in project wiki.
|
Pager<WikiPage> |
WikisApi.getPages(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of pages in project wiki.
|
Pager<Participant> |
MergeRequestApi.getParticipants(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of the participants of merge request.
|
Pager<Participant> |
IssuesApi.getParticipants(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage)
Get a Pager of the participants for an issue.
|
Pager<Todo> |
TodosApi.getPendingTodos(int itemsPerPage)
Get a Pager of pending todos for the current user.
|
Pager<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
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(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of pipelines in a project.
|
Pager<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
PipelineFilter filter,
int itemsPerPage)
Get a Pager of pipelines in a project filtered with the provided
PipelineFilter . |
Pager<PipelineSchedule> |
PipelineApi.getPipelineSchedules(Object projectIdOrPath,
int itemsPerPage)
Get Pager of project pipeline schedule.
|
Pager<Trigger> |
PipelineApi.getPipelineTriggers(Object projectIdOrPath,
int itemsPerPage)
Get Pager of project pipeline triggers.
|
Pager<Variable> |
PipelineApi.getPipelineVariables(Object projectIdOrPath,
Integer pipelineId,
int itemsPerPage)
Get a Pager of variables of a pipeline.
|
Pager<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of the deploy keys for the specified project.
|
Pager<DeployToken> |
DeployTokensApi.getProjectDeployTokens(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of the deploy tokens for the specified project.
|
Pager<Event> |
EventsApi.getProjectEvents(Object projectIdOrPath,
Constants.ActionType action,
Constants.TargetType targetType,
Date before,
Date after,
Constants.SortOrder sortOrder,
int itemsPerPage)
Get a list of events for the specified project and in the specified page range.
|
Pager<Event> |
ProjectApi.getProjectEvents(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project events for specific project.
|
Pager<Label> |
LabelsApi.getProjectLabels(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of all labels of the specified project.
|
Pager<Runner> |
RunnersApi.getProjectRunners(Object projectIdOrPath,
int itemsPerPage)
List all runners (specific and shared) available in the 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(Object groupIdOrPath,
GroupProjectsFilter filter,
int itemsPerPage)
Get a Pager of projects belonging to the specified group ID and filter.
|
Pager<Project> |
GroupApi.getProjects(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of projects belonging to the specified group ID.
|
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.
|
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<ProjectUser> |
ProjectApi.getProjectUsers(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project users.
|
Pager<ProjectUser> |
ProjectApi.getProjectUsers(Object projectIdOrPath,
String search,
int itemsPerPage)
Get a Pager of project users matching the specified search string.
|
Pager<ProtectedBranch> |
ProtectedBranchesApi.getProtectedBranches(Object projectIdOrPath,
int itemsPerPage)
Gets a Pager of protected branches from a project.
|
Pager<ProtectedTag> |
TagsApi.getProtectedTags(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of protected tags for a project.
|
Pager<Release> |
ReleasesApi.getReleases(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of releases for a project, sorted by release date.
|
Pager<RegistryRepository> |
ContainerRegistryApi.getRepositories(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of registry repositories in a project.
|
Pager<RegistryRepositoryTag> |
ContainerRegistryApi.getRepositoryTags(Object projectIdOrPath,
Integer repositoryId,
int itemsPerPage)
Get a Pager of tags for given registry repository.
|
Pager<Runner> |
RunnersApi.getRunners(int itemsPerPage)
Get a list of all available runners available to the user.
|
Pager<Runner> |
RunnersApi.getRunners(Runner.RunnerType type,
Runner.RunnerStatus status,
int itemsPerPage)
Get a list of specific runners available to the user.
|
Pager<Discussion> |
DiscussionsApi.getSnippetDiscussionsPager(Object projectIdOrPath,
Integer snippetId,
int itemsPerPage)
Get a Pager of Discussion instances for the specified snippet.
|
Pager<Snippet> |
SnippetsApi.getSnippets(int itemsPerPage)
Get a Pager of the authenticated user's snippets.
|
Pager<Snippet> |
ProjectApi.getSnippets(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of project's snippets.
|
Pager<Project> |
ProjectApi.getStarredProjects(int itemsPerPage)
Get a Pager of projects starred by the authenticated user.
|
Pager<Group> |
GroupApi.getSubGroups(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of visible direct subgroups in this group.
|
Pager<Group> |
GroupApi.getSubGroups(Object groupIdOrPath,
List<Integer> skipGroups,
Boolean allAvailable,
String search,
Constants.GroupOrderBy orderBy,
Constants.SortOrder sortOrder,
Boolean statistics,
Boolean owned,
int itemsPerPage)
Get a Pager of visible direct subgroups in this group.
|
Pager<SystemHook> |
SystemHooksApi.getSystemHooks(int itemsPerPage)
Get a Pager of all system hooks.
|
Pager<Tag> |
TagsApi.getTags(Object projectIdOrPath,
Constants.TagOrderBy orderBy,
Constants.SortOrder sortOrder,
String search,
int itemsPerPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
Pager<Tag> |
TagsApi.getTags(Object projectIdOrPath,
int itemsPerPage)
Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
|
Pager<Todo> |
TodosApi.getTodos(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type,
int itemsPerPage)
Returns a Pager of todos that match the provided filter params.
|
Pager<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
String filePath,
String refName,
Boolean recursive,
int itemsPerPage)
Get a Pager of repository files and directories in a project.
|
Pager<TreeItem> |
RepositoryApi.getTree(Object projectIdOrPath,
String filePath,
String refName,
int itemsPerPage)
Get a Pager of repository files and directories in a project.
|
Pager<Event> |
EventsApi.getUserEvents(Object userIdOrUsername,
Constants.ActionType action,
Constants.TargetType targetType,
Date before,
Date after,
Constants.SortOrder sortOrder,
int itemsPerPage)
Get a list of events for the specified user and in the specified page range.
|
Pager<Project> |
ProjectApi.getUserProjects(Object userIdOrUsername,
ProjectFilter filter,
int itemsPerPage)
Get a Pager of visible projects owned by the given user.
|
Pager<User> |
UserApi.getUsers(int itemsPerPage)
Get a Pager of users.
|
Pager<Variable> |
ProjectApi.getVariables(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of variables belonging to the specified project.
|
Pager<Variable> |
GroupApi.getVariables(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of variables belonging to the specified group.
|
Pager<?> |
SearchApi.globalSearch(Constants.SearchScope scope,
String search,
int itemsPerPage)
Search globally across the GitLab instance.
|
Pager<?> |
SearchApi.groupSearch(Object groupIdOrPath,
Constants.GroupSearchScope scope,
String search,
int itemsPerPage)
Search within the specified group.
|
Pager<?> |
SearchApi.projectSearch(Object projectIdOrPath,
Constants.ProjectSearchScope scope,
String search,
int itemsPerPage)
Search within the specified project.
|
Pager<?> |
SearchApi.projectSearch(Object projectIdOrPath,
Constants.ProjectSearchScope scope,
String search,
String ref,
int itemsPerPage)
Search within the specified project.
|
Copyright © 2020. All rights reserved.