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> |
MilestonesApi.getGroupIssues(Object groupIdOrPath,
Integer milestoneId) |
Get the list of issues associated with the specified group milestone.
|
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(Object projectIdOrPath) |
Get a list of project's issues.
|
Pager<Issue> |
IssuesApi.getIssues(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of project's issues.
|
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.
|
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> |
MilestonesApi.getIssues(Object projectIdOrPath,
Integer milestoneId) |
Get the list of issues associated with the specified milestone.
|
List<Issue> |
ProjectApi.getIssues(Object projectIdOrPath) |
Deprecated.
|
Pager<Issue> |
ProjectApi.getIssues(Object projectIdOrPath,
int itemsPerPage) |
Deprecated.
|
List<Issue> |
ProjectApi.getIssues(Object projectIdOrPath,
int page,
int perPage) |
Deprecated.
|
Stream<Issue> |
IssuesApi.getIssuesStream() |
Get all issues the authenticated user has access to as a Stream.
|
Stream<Issue> |
IssuesApi.getIssuesStream(Object projectIdOrPath) |
Get a Stream of project's issues.
|
Stream<Issue> |
IssuesApi.getIssuesStream(Object projectIdOrPath,
IssueFilter filter) |
Get a Stream of project's issues.
|
Stream<Issue> |
IssuesApi.getIssuesStream(IssueFilter filter) |
Get all issues the authenticated user has access to.
|
Stream<Issue> |
ProjectApi.getIssuesStream(Object projectIdOrPath) |
Deprecated.
|
Optional<Issue> |
IssuesApi.getOptionalIssue(Object projectIdOrPath,
Integer issueIid) |
Get a single project issue as an Optional instance.
|