-
Methods in org.gitlab4j.api that return Note
Modifier and Type |
Method |
Description |
Note |
DiscussionsApi.addCommitDiscussionNote(Object projectIdOrPath,
String commitSha,
String discussionId,
String body,
Date createdAt) |
Adds a note to an existing commit discussion.
|
Note |
DiscussionsApi.addIssueThreadNote(Object projectIdOrPath,
Integer issueIid,
String discussionId,
String body,
Date createdAt) |
Adds a new note to the thread.
|
Note |
DiscussionsApi.addMergeRequestThreadNote(Object projectIdOrPath,
Integer mergeRequestIid,
String discussionId,
String body,
Date createdAt) |
Adds a new note to the thread.
|
Note |
NotesApi.createIssueNote(Object projectIdOrPath,
Integer issueIid,
String body) |
Create a issues's note.
|
Note |
NotesApi.createIssueNote(Object projectIdOrPath,
Integer issueIid,
String body,
Date createdAt) |
Create a issues's note.
|
Note |
NotesApi.createMergeRequestNote(Object projectIdOrPath,
Integer mergeRequestIid,
String body) |
Create a merge request's note.
|
Note |
NotesApi.getIssueNote(Object projectIdOrPath,
Integer issueIid,
Integer noteId) |
Get the specified issues's note.
|
Note |
NotesApi.getMergeRequestNote(Object projectIdOrPath,
Integer mergeRequestIid,
Integer noteId) |
Get the specified merge request's note.
|
Note |
DiscussionsApi.modifyCommitDiscussionNote(Object projectIdOrPath,
String commitSha,
String discussionId,
Integer noteId,
String body) |
Modify an existing discussion note of a commit.
|
Note |
DiscussionsApi.modifyIssueThreadNote(Object projectIdOrPath,
Integer issueIid,
String discussionId,
Integer noteId,
String body) |
Modify existing thread note of an issue.
|
Note |
DiscussionsApi.modifyMergeRequestThreadNote(Object projectIdOrPath,
Integer mergeRequestIid,
String discussionId,
Integer noteId,
String body,
Boolean resolved) |
Modify or resolve an existing thread note of a merge request.
|
Note |
DiscussionsApi.resolveCommitDiscussionNote(Object projectIdOrPath,
String commitSha,
String discussionId,
Integer noteId,
Boolean resolved) |
Resolve or unresolve an existing discussion note of a commit.
|
Note |
NotesApi.updateIssueNote(Object projectIdOrPath,
Integer issueIid,
Integer noteId,
String body) |
Update the specified issues's note.
|
Note |
NotesApi.updateMergeRequestNote(Object projectIdOrPath,
Integer mergeRequestIid,
Integer noteId,
String body) |
Update the specified merge request's note.
|
Methods in org.gitlab4j.api that return types with arguments of type Note
Modifier and Type |
Method |
Description |
List<Note> |
NotesApi.getIssueNotes(Object projectIdOrPath,
Integer issueIid) |
Get a list of the issues's notes.
|
Pager<Note> |
NotesApi.getIssueNotes(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage) |
Get a Pager of issues's notes.
|
List<Note> |
NotesApi.getIssueNotes(Object projectIdOrPath,
Integer issueIid,
int page,
int perPage) |
Get a list of the issue's notes using the specified page and per page settings.
|
Stream<Note> |
NotesApi.getIssueNotesStream(Object projectIdOrPath,
Integer issueIid) |
Get a Stream of the issues's notes.
|
List<Note> |
NotesApi.getMergeRequestNotes(Object projectIdOrPath,
Integer mergeRequestIid) |
Gets a list 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
|
List<Note> |
NotesApi.getMergeRequestNotes(Object projectIdOrPath,
Integer mergeRequestIid,
int page,
int perPage) |
Gets a list of all notes for a single merge request using the specified page and per page settings.
|
List<Note> |
NotesApi.getMergeRequestNotes(Object projectIdOrPath,
Integer mergeRequestIid,
Constants.SortOrder sortOrder,
Note.OrderBy orderBy) |
Gets a list of all notes for a single 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
|
List<Note> |
NotesApi.getMergeRequestNotes(Object projectIdOrPath,
Integer mergeRequestIid,
Constants.SortOrder sortOrder,
Note.OrderBy orderBy,
int page,
int perPage) |
Gets a list of all notes for a single merge request using the specified page and per page settings.
|
Stream<Note> |
NotesApi.getMergeRequestNotesStream(Object projectIdOrPath,
Integer mergeRequestIid) |
Gets a Stream of all notes for a single merge request
|
Stream<Note> |
NotesApi.getMergeRequestNotesStream(Object projectIdOrPath,
Integer mergeRequestIid,
Constants.SortOrder sortOrder,
Note.OrderBy orderBy) |
Gets a Stream of all notes for a single merge request.
|
List<Note> |
NotesApi.getNotes(Object projectIdOrPath,
Integer issueIid) |
Deprecated.
|
Pager<Note> |
NotesApi.getNotes(Object projectIdOrPath,
Integer issueIid,
int itemsPerPage) |
Deprecated.
|
List<Note> |
NotesApi.getNotes(Object projectIdOrPath,
Integer issueIid,
int page,
int perPage) |
Deprecated.
|
-
NotesApi.getIssueNotes(Object, Integer)