Line data Source code
1 : // Copyright (C) 2016 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.extensions.api.changes; 16 : 17 : import com.google.gerrit.common.Nullable; 18 : import java.util.Map; 19 : 20 : /** Result object representing the outcome of a review request. */ 21 66 : public class ReviewResult { 22 : /** 23 : * Map of labels to values after the review was posted. Null if any reviewer additions were 24 : * rejected. 25 : */ 26 : @Nullable public Map<String, Short> labels; 27 : 28 : /** 29 : * Map of account or group identifier to outcome of adding as a reviewer. Null if no reviewer 30 : * additions were requested. 31 : */ 32 : @Nullable public Map<String, ReviewerResult> reviewers; 33 : 34 : /** 35 : * Boolean indicating whether the change was moved out of WIP by this review. Either true or null. 36 : */ 37 : @Nullable public Boolean ready; 38 : 39 : /** Error message for non-200 responses. */ 40 : @Nullable public String error; 41 : }