-
Methods in org.gitlab4j.api that return types with arguments of type Participant
Modifier and Type |
Method |
Description |
List<Participant> |
IssuesApi.getParticipants(Object projectIdOrPath,
Integer issueIid) |
Get list of participants for an issue.
|
Pager<Participant> |
IssuesApi.getParticipants(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage) |
Get a Pager of the participants for an issue.
|
List<Participant> |
IssuesApi.getParticipants(Object projectIdOrPath,
Integer issueIid,
int page,
int perPage) |
Get list of participants for an issue and in the specified page range.
|
List<Participant> |
MergeRequestApi.getParticipants(Object projectIdOrPath,
Integer mergeRequestIid) |
Get list of participants of merge request.
|
Pager<Participant> |
MergeRequestApi.getParticipants(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage) |
Get a Pager of the participants of merge request.
|
List<Participant> |
MergeRequestApi.getParticipants(Object projectIdOrPath,
Integer mergeRequestIid,
int page,
int perPage) |
Get list of participants of merge request and in the specified page range.
|
Stream<Participant> |
IssuesApi.getParticipantsStream(Object projectIdOrPath,
Integer issueIid) |
Get Stream of participants for an issue.
|
Stream<Participant> |
MergeRequestApi.getParticipantsStream(Object projectIdOrPath,
Integer mergeRequestIid) |
Get Stream of participants of merge request.
|
-