Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
Modifier and Type | Method and Description |
---|---|
Note |
NotesApi.createIssueNote(Integer projectId,
Integer issueIid,
String body)
Create a issues's note.
|
Note |
NotesApi.createIssueNote(Integer projectId,
Integer issueIid,
String body,
Date createdAt)
Create a issues's note.
|
Note |
NotesApi.createMergeRequestNote(Integer projectId,
Integer mergeRequestIid,
String body)
Create a merge request's note.
|
Note |
NotesApi.getIssueNote(Integer projectId,
Integer issueIid,
Integer noteId)
Get the specified issues's note.
|
Note |
NotesApi.getMergeRequestNote(Integer projectId,
Integer mergeRequestIid,
Integer noteId)
Get the specified merge request's note.
|
Note |
NotesApi.updateIssueNote(Integer projectId,
Integer issueIid,
Integer noteId,
String body)
Update the specified issues's note.
|
Note |
NotesApi.updateMergeRequestNote(Integer projectId,
Integer mergeRequestIid,
Integer noteId,
String body)
Update the specified merge request's note.
|
Modifier and Type | Method and Description |
---|---|
List<Note> |
NotesApi.getIssueNotes(Integer projectId,
Integer issueIid)
Get a list of the issues's notes.
|
Pager<Note> |
NotesApi.getIssueNotes(Integer projectId,
Integer issueIid,
int itemsPerPage)
Get a Pager of issues's notes.
|
List<Note> |
NotesApi.getIssueNotes(Integer projectId,
Integer issueIid,
int page,
int perPage)
Get a list of the issue's notes using the specified page and per page settings.
|
List<Note> |
NotesApi.getMergeRequestNotes(Integer projectId,
Integer mergeRequestIid)
Gets a list of all notes for a single merge request.
|
List<Note> |
NotesApi.getMergeRequestNotes(Integer projectId,
Integer mergeRequestIid,
Constants.SortOrder sortOrder,
Note.OrderBy orderBy)
Gets a list of all notes for a single merge request.
|
Pager<Note> |
NotesApi.getMergeRequestNotes(Integer projectId,
Integer mergeRequestIid,
Constants.SortOrder sortOrder,
Note.OrderBy orderBy,
int itemsPerPage)
Get a Pager of all notes for a single merge request
GET /projects/:id/merge_requests/:merge_request_iid/notes
|
List<Note> |
NotesApi.getMergeRequestNotes(Integer projectId,
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.
|
Pager<Note> |
NotesApi.getMergeRequestNotes(Integer projectId,
Integer mergeRequestIid,
int itemsPerPage)
Get a Pager of all notes for a single merge request
GET /projects/:id/merge_requests/:merge_request_iid/notes
|
List<Note> |
NotesApi.getMergeRequestNotes(Integer projectId,
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.getNotes(Integer projectId,
Integer issueIid)
Deprecated.
As of release 4.7.0, replaced by
NotesApi.getIssueNotes(Integer, Integer) |
Pager<Note> |
NotesApi.getNotes(Integer projectId,
Integer issueIid,
int itemsPerPage)
Deprecated.
As of release 4.7.0, replaced by
NotesApi.getIssueNotes(Integer, Integer, int) |
List<Note> |
NotesApi.getNotes(Integer projectId,
Integer issueIid,
int page,
int perPage)
Deprecated.
As of release 4.7.0, replaced by
NotesApi.getIssueNotes(Integer, Integer, int, int) |
Modifier and Type | Method and Description |
---|---|
Note |
Event.getNote() |
Modifier and Type | Method and Description |
---|---|
List<Note> |
Discussion.getNotes() |
Modifier and Type | Method and Description |
---|---|
void |
Event.setNote(Note note) |
Modifier and Type | Method and Description |
---|---|
void |
Discussion.setNotes(List<Note> notes) |
Copyright © 2018. All rights reserved.