All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gerrit.extensions.api.changes.AddReviewerResult Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc4
Show newest version
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.gerrit.extensions.api.changes;

import com.google.gerrit.common.Nullable;
import com.google.gerrit.extensions.common.AccountInfo;
import java.util.List;

/** Result object representing the outcome of a request to add a reviewer. */
public class AddReviewerResult {
  /** The identifier of an account or group that was to be added as a reviewer. */
  public String input;

  /** If non-null, a string describing why the reviewer could not be added. */
  @Nullable public String error;

  /**
   * Non-null and true if the reviewer cannot be added without explicit confirmation. This may be
   * the case for groups of a certain size.
   */
  @Nullable public Boolean confirm;

  /**
   * List of individual reviewers added to the change. The size of this list may be greater than one
   * (e.g. when a group is added). Null if no reviewers were added.
   */
  @Nullable public List reviewers;

  /**
   * List of accounts CCed on the change. The size of this list may be greater than one (e.g. when a
   * group is CCed). Null if no accounts were CCed or if reviewers is non-null.
   */
  @Nullable public List ccs;

  /**
   * Constructs a partially initialized result for the given reviewer.
   *
   * @param input String identifier of an account or group, from user request
   */
  public AddReviewerResult(String input) {
    this.input = input;
  }

  /**
   * Constructs an error result for the given account.
   *
   * @param reviewer String identifier of an account or group
   * @param error Error message
   */
  public AddReviewerResult(String reviewer, String error) {
    this(reviewer);
    this.error = error;
  }

  /**
   * Constructs a needs-confirmation result for the given account.
   *
   * @param confirm Whether confirmation is needed.
   */
  public AddReviewerResult(String reviewer, boolean confirm) {
    this(reviewer);
    this.confirm = confirm;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy