Class AwardEmojiApi

    • Constructor Detail

      • AwardEmojiApi

        public AwardEmojiApi​(GitLabApi gitLabApi)
    • Method Detail

      • getIssueAwardEmojis

        public java.util.List<AwardEmoji> getIssueAwardEmojis​(java.lang.Object projectIdOrPath,
                                                              java.lang.Long issueIid)
                                                       throws GitLabApiException
        Get a list of award emoji for the specified issue.
        GitLab Endpoint: GET /projects/:id/issues/:issue_iid/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID to get the award emojis for
        Returns:
        a list of AwardEmoji for the specified issue
        Throws:
        GitLabApiException - if any exception occurs
      • getMergeRequestAwardEmojis

        public java.util.List<AwardEmoji> getMergeRequestAwardEmojis​(java.lang.Object projectIdOrPath,
                                                                     java.lang.Long mergeRequestIid)
                                                              throws GitLabApiException
        Get a list of award emoji for the specified merge request.
        GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID to get the award emojis for
        Returns:
        a list of AwardEmoji for the specified merge request
        Throws:
        GitLabApiException - if any exception occurs
      • getSnippetAwardEmojis

        public java.util.List<AwardEmoji> getSnippetAwardEmojis​(java.lang.Object projectIdOrPath,
                                                                java.lang.Long snippetId)
                                                         throws GitLabApiException
        Get a list of award emoji for the specified snippet.
        GitLab Endpoint: GET /projects/:id/snippets/:snippet_id/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        snippetId - the snippet ID to get the award emojis for
        Returns:
        a list of AwardEmoji for the specified snippet
        Throws:
        GitLabApiException - if any exception occurs
      • getIssueNoteAwardEmojis

        public java.util.List<AwardEmoji> getIssueNoteAwardEmojis​(java.lang.Object projectIdOrPath,
                                                                  java.lang.Long issueIid,
                                                                  java.lang.Long noteId)
                                                           throws GitLabApiException
        Get a list of award emoji for the specified issue note.
        GitLab Endpoint: GET /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID of the issue that owns the note
        noteId - the note ID to get the award emojis for
        Returns:
        a list of AwardEmoji for the specified note
        Throws:
        GitLabApiException - if any exception occurs
      • getNoteAwardEmojis

        public java.util.List<AwardEmoji> getNoteAwardEmojis​(java.lang.Object projectIdOrPath,
                                                             java.lang.Long issueIid,
                                                             java.lang.Long noteId)
                                                      throws GitLabApiException
        Get a list of award emoji for the specified issue note.
        GitLab Endpoint: GET /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID of the issue that owns the note
        noteId - the note ID to get the award emojis for
        Returns:
        a list of AwardEmoji for the specified note
        Throws:
        GitLabApiException - if any exception occurs
      • getMergeRequestNoteAwardEmojis

        public java.util.List<AwardEmoji> getMergeRequestNoteAwardEmojis​(java.lang.Object projectIdOrPath,
                                                                         java.lang.Long mergeRequestIid,
                                                                         java.lang.Long noteId)
                                                                  throws GitLabApiException
        Get a list of award emoji for the specified merge request note.
        GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/notes/:note_id/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID of the merge request that owns the note
        noteId - the note ID to get the award emojis for
        Returns:
        a list of AwardEmoji for the specified note
        Throws:
        GitLabApiException - if any exception occurs
      • getIssueAwardEmoji

        public AwardEmoji getIssueAwardEmoji​(java.lang.Object projectIdOrPath,
                                             java.lang.Long issueIid,
                                             java.lang.Long awardId)
                                      throws GitLabApiException
        Get the specified award emoji for the specified issue.
        GitLab Endpoint: GET /projects/:id/issues/:issue_iid/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID to get the award emoji for
        awardId - the ID of the award emoji to get
        Returns:
        an AwardEmoji instance for the specified award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • getMergeRequestAwardEmoji

        public AwardEmoji getMergeRequestAwardEmoji​(java.lang.Object projectIdOrPath,
                                                    java.lang.Long mergeRequestIid,
                                                    java.lang.Long awardId)
                                             throws GitLabApiException
        Get the specified award emoji for the specified merge request.
        GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID to get the award emoji for
        awardId - the ID of the award emoji to get
        Returns:
        an AwardEmoji instance for the specified award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • getSnippetAwardEmoji

        public AwardEmoji getSnippetAwardEmoji​(java.lang.Object projectIdOrPath,
                                               java.lang.Long snippetId,
                                               java.lang.Long awardId)
                                        throws GitLabApiException
        Get the specified award emoji for the specified snippet.
        GitLab Endpoint: GET /projects/:id/snippets/:snippet_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        snippetId - the snippet ID to get the award emoji for
        awardId - the ID of the award emoji to get
        Returns:
        an AwardEmoji instance for the specified award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • getIssueNoteAwardEmoji

        public AwardEmoji getIssueNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                                 java.lang.Long issueIid,
                                                 java.lang.Long noteId,
                                                 java.lang.Long awardId)
                                          throws GitLabApiException
        Get the specified award emoji for the specified issue note.
        GitLab Endpoint: GET /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID of the issue that owns the note
        noteId - the note ID to get the award emoji from
        awardId - the ID of the award emoji to get
        Returns:
        an AwardEmoji instance for the specified award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • getNoteAwardEmoji

        @Deprecated
        public AwardEmoji getNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                            java.lang.Long issueIid,
                                            java.lang.Long noteId,
                                            java.lang.Long awardId)
                                     throws GitLabApiException
        Get the specified award emoji for the specified issue note.
        GitLab Endpoint: GET /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID of the issue that owns the note
        noteId - the note ID to get the award emoji from
        awardId - the ID of the award emoji to get
        Returns:
        an AwardEmoji instance for the specified award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • getMergeRequestNoteAwardEmoji

        public AwardEmoji getMergeRequestNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                                        java.lang.Long mergeRequestIid,
                                                        java.lang.Long noteId,
                                                        java.lang.Long awardId)
                                                 throws GitLabApiException
        Get the specified award emoji for the specified merge request note.
        GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/notes/:note_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID of the merge request that owns the note
        noteId - the note ID to get the award emoji from
        awardId - the ID of the award emoji to get
        Returns:
        an AwardEmoji instance for the specified award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • addIssueAwardEmoji

        public AwardEmoji addIssueAwardEmoji​(java.lang.Object projectIdOrPath,
                                             java.lang.Long issueIid,
                                             java.lang.String name)
                                      throws GitLabApiException
        Add an award emoji for the specified issue.
        GitLab Endpoint: POST /projects/:id/issues/:issue_iid/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID to add the award emoji to
        name - the name of the award emoji to add
        Returns:
        an AwardEmoji instance for the added award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • addMergeRequestAwardEmoji

        public AwardEmoji addMergeRequestAwardEmoji​(java.lang.Object projectIdOrPath,
                                                    java.lang.Long mergeRequestIid,
                                                    java.lang.String name)
                                             throws GitLabApiException
        Add an award emoji to the specified merge request.
        GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID to add the award emoji to
        name - the name of the award emoji to add
        Returns:
        an AwardEmoji instance for the added award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • addSnippetAwardEmoji

        public AwardEmoji addSnippetAwardEmoji​(java.lang.Object projectIdOrPath,
                                               java.lang.Long snippetId,
                                               java.lang.String name)
                                        throws GitLabApiException
        Add an award emoji to the specified snippet.
        GitLab Endpoint: POST /projects/:id/snippets/:snippet_id/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        snippetId - the snippet ID to add the award emoji to
        name - the name of the award emoji to add
        Returns:
        an AwardEmoji instance for the added award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • addIssueNoteAwardEmoji

        public AwardEmoji addIssueNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                                 java.lang.Long issueIid,
                                                 java.lang.Long noteId,
                                                 java.lang.String name)
                                          throws GitLabApiException
        Add an award emoji for the specified issue note.
        GitLab Endpoint: POST /projects/:id/issues/:issue_iid/notes/:noteId/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID of the issue that owns the note
        noteId - the note ID to add the award emoji to
        name - the name of the award emoji to add
        Returns:
        an AwardEmoji instance for the added award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • addNoteAwardEmoji

        @Deprecated
        public AwardEmoji addNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                            java.lang.Long issueIid,
                                            java.lang.Long noteId,
                                            java.lang.String name)
                                     throws GitLabApiException
        Add an award emoji for the specified issue note.
        GitLab Endpoint: POST /projects/:id/issues/:issue_iid/notes/:noteId/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID of the issue that owns the note
        noteId - the note ID to add the award emoji to
        name - the name of the award emoji to add
        Returns:
        an AwardEmoji instance for the added award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • addMergeRequestAwardEmoji

        public AwardEmoji addMergeRequestAwardEmoji​(java.lang.Object projectIdOrPath,
                                                    java.lang.Integer mergeRequestIid,
                                                    java.lang.Integer noteId,
                                                    java.lang.String name)
                                             throws GitLabApiException
        Add an award emoji for the specified merge request note.
        GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/notes/:noteId/award_emoji
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID of the merge request that owns the note
        noteId - the note ID to add the award emoji to
        name - the name of the award emoji to add
        Returns:
        an AwardEmoji instance for the added award emoji
        Throws:
        GitLabApiException - if any exception occurs
      • deleteIssueAwardEmoji

        public void deleteIssueAwardEmoji​(java.lang.Object projectIdOrPath,
                                          java.lang.Long issueIid,
                                          java.lang.Long awardId)
                                   throws GitLabApiException
        Delete an award emoji from the specified issue.
        GitLab Endpoint: DELETE /projects/:id/issues/:issue_iid/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID to delete the award emoji from
        awardId - the ID of the award emoji to delete
        Throws:
        GitLabApiException - if any exception occurs
      • deleteMergeRequestAwardEmoji

        public void deleteMergeRequestAwardEmoji​(java.lang.Object projectIdOrPath,
                                                 java.lang.Long mergeRequestIid,
                                                 java.lang.Long awardId)
                                          throws GitLabApiException
        Delete an award emoji from the specified merge request.
        GitLab Endpoint: DELETE /projects/:id/merge_requests/:merge_request_iid/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID to delete the award emoji from
        awardId - the ID of the award emoji to delete
        Throws:
        GitLabApiException - if any exception occurs
      • deleteSnippetAwardEmoji

        public void deleteSnippetAwardEmoji​(java.lang.Object projectIdOrPath,
                                            java.lang.Long snippetId,
                                            java.lang.Long awardId)
                                     throws GitLabApiException
        Delete an award emoji from the specified snippet.
        GitLab Endpoint: DELETE /projects/:id/snippets/:snippet_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        snippetId - the snippet ID to delete the award emoji from
        awardId - the ID of the award emoji to delete
        Throws:
        GitLabApiException - if any exception occurs
      • deleteIssueNoteAwardEmoji

        public void deleteIssueNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                              java.lang.Long issueIid,
                                              java.lang.Long noteId,
                                              java.lang.Long awardId)
                                       throws GitLabApiException
        Delete an award emoji from the specified issue note.
        GitLab Endpoint: DELETE /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID that owns the note
        noteId - the note ID of the note to delete the award emoji from
        awardId - the ID of the award emoji to delete
        Throws:
        GitLabApiException - if any exception occurs
      • deleteNoteAwardEmoji

        @Deprecated
        public void deleteNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                         java.lang.Long issueIid,
                                         java.lang.Long noteId,
                                         java.lang.Long awardId)
                                  throws GitLabApiException
        Delete an award emoji from the specified issue note.
        GitLab Endpoint: DELETE /projects/:id/issues/:issue_iid/notes/:note_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        issueIid - the issue IID that owns the note
        noteId - the note ID of the note to delete the award emoji from
        awardId - the ID of the award emoji to delete
        Throws:
        GitLabApiException - if any exception occurs
      • deleteMergeRequestNoteAwardEmoji

        public void deleteMergeRequestNoteAwardEmoji​(java.lang.Object projectIdOrPath,
                                                     java.lang.Long mergeRequestIid,
                                                     java.lang.Long noteId,
                                                     java.lang.Long awardId)
                                              throws GitLabApiException
        Delete an award emoji from the specified merge request note.
        GitLab Endpoint: DELETE /projects/:id/merge_requests/:merge_request_iid/notes/:note_id/award_emoji/:award_id
        Parameters:
        projectIdOrPath - id, path of the project, or a Project instance holding the project ID or path
        mergeRequestIid - the merge request IID of the merge request that owns the note
        noteId - the note ID of the note to delete the award emoji from
        awardId - the ID of the award emoji to delete
        Throws:
        GitLabApiException - if any exception occurs