Line data Source code
1 : // Copyright (C) 2017 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.change; 16 : 17 : import com.google.gerrit.entities.Change; 18 : import com.google.gerrit.entities.HumanComment; 19 : import com.google.gerrit.entities.PatchSet; 20 : import com.google.gerrit.extensions.restapi.RestResource; 21 : import com.google.gerrit.extensions.restapi.RestView; 22 : import com.google.gerrit.server.CurrentUser; 23 : import com.google.gerrit.server.notedb.ChangeNotes; 24 : import com.google.inject.TypeLiteral; 25 : 26 : public class DraftCommentResource implements RestResource { 27 152 : public static final TypeLiteral<RestView<DraftCommentResource>> DRAFT_COMMENT_KIND = 28 152 : new TypeLiteral<>() {}; 29 : 30 : private final RevisionResource rev; 31 : private final HumanComment comment; 32 : 33 18 : public DraftCommentResource(RevisionResource rev, HumanComment c) { 34 18 : this.rev = rev; 35 18 : this.comment = c; 36 18 : } 37 : 38 : public CurrentUser getUser() { 39 9 : return rev.getUser(); 40 : } 41 : 42 : public Change getChange() { 43 9 : return rev.getChange(); 44 : } 45 : 46 : public PatchSet getPatchSet() { 47 0 : return rev.getPatchSet(); 48 : } 49 : 50 : public HumanComment getComment() { 51 12 : return comment; 52 : } 53 : 54 : public ChangeNotes getNotes() { 55 1 : return rev.getNotes(); 56 : } 57 : 58 : public String getId() { 59 1 : return comment.key.uuid; 60 : } 61 : }