Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
Modifier and Type | Method and Description |
---|---|
Issue |
IssuesApi.assignIssue(Object projectIdOrPath,
Integer issueIid,
Integer assigneeId)
Updates an existing project issue.
|
Issue |
IssuesApi.closeIssue(Object projectIdOrPath,
Integer issueIid)
Closes an existing project issue.
|
Issue |
IssuesApi.createIssue(Object projectIdOrPath,
String title,
String description)
Create an issue for the project.
|
Issue |
IssuesApi.createIssue(Object projectIdOrPath,
String title,
String description,
Boolean confidential,
List<Integer> assigneeIds,
Integer milestoneId,
String labels,
Date createdAt,
Date dueDate,
Integer mergeRequestToResolveId,
Integer discussionToResolveId)
Create an issue for the project.
|
Issue |
ProjectApi.getIssue(Object projectIdOrPath,
Integer issueId)
Deprecated.
Will be removed in version 5.0, replaced by
IssuesApi.getIssue(Object, Integer) |
Issue |
IssuesApi.getIssue(Object projectIdOrPath,
Integer issueIid)
Get a single project issue.
|
Issue |
IssuesApi.updateIssue(Object projectIdOrPath,
Integer issueIid,
String title,
String description,
Boolean confidential,
List<Integer> assigneeIds,
Integer milestoneId,
String labels,
Constants.StateEvent stateEvent,
Date updatedAt,
Date dueDate)
Updates an existing project issue.
|
Modifier and Type | Method and Description |
---|---|
List<Issue> |
MergeRequestApi.getClosesIssues(Object projectIdOrPath,
Integer mergeRequestIid)
Get list containing all the issues that would be closed by merging the provided merge request.
|
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.
|
List<Issue> |
MergeRequestApi.getClosesIssues(Object projectIdOrPath,
Integer mergeRequestIid,
int page,
int perPage)
Get list containing all the issues that would be closed by merging the provided merge request.
|
Stream<Issue> |
MergeRequestApi.getClosesIssuesStream(Object projectIdOrPath,
Integer mergeRequestIid)
Get Stream containing all the issues that would be closed by merging the provided merge request.
|
List<Issue> |
IssuesApi.getGroupIssues(Object groupIdOrPath)
Get a list of a group’s issues.
|
Pager<Issue> |
IssuesApi.getGroupIssues(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of groups's issues.
|
List<Issue> |
MilestonesApi.getGroupIssues(Object groupIdOrPath,
Integer milestoneId)
Get the list of issues associated with the specified group milestone.
|
Pager<Issue> |
MilestonesApi.getGroupIssues(Object groupIdOrPath,
Integer milestoneId,
int itemsPerPage)
Get the Pager of issues associated with the specified group milestone.
|
List<Issue> |
IssuesApi.getGroupIssues(Object groupIdOrPath,
IssueFilter filter)
Get a list of a group’s issues.
|
Pager<Issue> |
IssuesApi.getGroupIssues(Object groupIdOrPath,
IssueFilter filter,
int itemsPerPage)
Get a list of groups's issues.
|
Stream<Issue> |
IssuesApi.getGroupIssuesStream(Object groupIdOrPath)
Get a Stream of a group’s issues.
|
Stream<Issue> |
MilestonesApi.getGroupIssuesStream(Object groupIdOrPath,
Integer milestoneId)
Get a Stream of issues associated with the specified group milestone.
|
Stream<Issue> |
IssuesApi.getGroupIssuesStream(Object groupIdOrPath,
IssueFilter filter)
Get a Stream of a group’s issues.
|
List<Issue> |
IssuesApi.getIssueLinks(Object projectIdOrPath,
Integer issueIid)
Get a list of related issues of a given issue, sorted by the relationship creation datetime (ascending).
|
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).
|
Stream<Issue> |
IssuesApi.getIssueLinksStream(Object projectIdOrPath,
Integer issueIid)
Get a Stream of related issues of a given issue, sorted by the relationship creation datetime (ascending).
|
List<Issue> |
IssuesApi.getIssues()
Get all issues the authenticated user has access to.
|
Pager<Issue> |
IssuesApi.getIssues(int itemsPerPage)
Get a Pager of all issues the authenticated user has access to.
|
List<Issue> |
IssuesApi.getIssues(int page,
int perPage)
Get all issues the authenticated user has access to using the specified page and per page setting.
|
List<Issue> |
IssuesApi.getIssues(IssueFilter filter)
Get 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.
|
List<Issue> |
IssuesApi.getIssues(IssueFilter filter,
int page,
int perPage)
Get all issues the authenticated user has access to.
|
List<Issue> |
ProjectApi.getIssues(Object projectIdOrPath)
Deprecated.
Will be removed in version 5.0, replaced by
IssuesApi.getIssues(Object) |
List<Issue> |
IssuesApi.getIssues(Object projectIdOrPath)
Get a list of project's issues.
|
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.
|
List<Issue> |
MilestonesApi.getIssues(Object projectIdOrPath,
Integer milestoneId)
Get the list of issues associated with the specified milestone.
|
Pager<Issue> |
MilestonesApi.getIssues(Object projectIdOrPath,
Integer milestoneId,
int itemsPerPage)
Get a Pager of issues associated with the specified milestone.
|
List<Issue> |
ProjectApi.getIssues(Object projectIdOrPath,
int page,
int perPage)
Deprecated.
Will be removed in version 5.0, replaced by
IssuesApi.getIssues(Object, int, int) |
List<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
int page,
int perPage)
Get a list of project's issues using the specified page and per page settings.
|
List<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
IssueFilter filter)
Get a list of project's issues.
|
Pager<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
IssueFilter filter,
int itemsPerPage)
Get a list of project's issues.
|
List<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
IssueFilter filter,
int page,
int perPage)
Get a list of project's issues.
|
Stream<Issue> |
IssuesApi.getIssuesStream()
Get all issues the authenticated user has access to as a Stream.
|
Stream<Issue> |
IssuesApi.getIssuesStream(IssueFilter filter)
Get all issues the authenticated user has access to.
|
Stream<Issue> |
ProjectApi.getIssuesStream(Object projectIdOrPath)
Deprecated.
Will be removed in version 5.0, replaced by
IssuesApi.getIssues(Object) |
Stream<Issue> |
IssuesApi.getIssuesStream(Object projectIdOrPath)
Get a Stream of project's issues.
|
Stream<Issue> |
MilestonesApi.getIssuesStream(Object projectIdOrPath,
Integer milestoneId)
Get a Stream of issues associated with the specified milestone.
|
Stream<Issue> |
IssuesApi.getIssuesStream(Object projectIdOrPath,
IssueFilter filter)
Get a Stream of project's issues.
|
Optional<Issue> |
IssuesApi.getOptionalIssue(Object projectIdOrPath,
Integer issueIid)
Get a single project issue as an Optional instance.
|
Modifier and Type | Class and Description |
---|---|
class |
EpicIssue |
Modifier and Type | Method and Description |
---|---|
Issue |
Todo.getIssueTarget() |
Issue |
IssueLink.getSourceIssue() |
Issue |
IssueLink.getTargetIssue() |
Modifier and Type | Method and Description |
---|---|
void |
IssueLink.setSourceIssue(Issue sourceIssue) |
void |
IssueLink.setTargetIssue(Issue targetIssue) |
Copyright © 2019. All rights reserved.