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.Account; 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.inject.TypeLiteral; 23 : 24 : public class HumanCommentResource implements RestResource { 25 152 : public static final TypeLiteral<RestView<HumanCommentResource>> COMMENT_KIND = 26 152 : new TypeLiteral<>() {}; 27 : 28 : private final RevisionResource rev; 29 : private final HumanComment comment; 30 : 31 4 : public HumanCommentResource(RevisionResource rev, HumanComment c) { 32 4 : this.rev = rev; 33 4 : this.comment = c; 34 4 : } 35 : 36 : public PatchSet getPatchSet() { 37 0 : return rev.getPatchSet(); 38 : } 39 : 40 : public HumanComment getComment() { 41 4 : return comment; 42 : } 43 : 44 : public String getId() { 45 0 : return comment.key.uuid; 46 : } 47 : 48 : public Account.Id getAuthorId() { 49 0 : return comment.author.getId(); 50 : } 51 : 52 : public RevisionResource getRevisionResource() { 53 3 : return rev; 54 : } 55 : }