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.PatchSet; 19 : import com.google.gerrit.entities.RobotComment; 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 RobotCommentResource implements RestResource { 25 152 : public static final TypeLiteral<RestView<RobotCommentResource>> ROBOT_COMMENT_KIND = 26 152 : new TypeLiteral<>() {}; 27 : 28 : private final RevisionResource rev; 29 : private final RobotComment comment; 30 : 31 2 : public RobotCommentResource(RevisionResource rev, RobotComment c) { 32 2 : this.rev = rev; 33 2 : this.comment = c; 34 2 : } 35 : 36 : public PatchSet getPatchSet() { 37 0 : return rev.getPatchSet(); 38 : } 39 : 40 : public RobotComment getComment() { 41 2 : 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 : }