Class ReviewerResult
java.lang.Object
com.google.gerrit.extensions.api.changes.ReviewerResult
Result object representing the outcome of a request to add/remove a reviewer.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionList of new accounts CCed on the change.Non-null and true if the reviewer cannot be added without explicit confirmation.If non-null, a string describing why the reviewer could not be added/removed.The identifier of an account or group that was to be added/removed as a reviewer.An account removed from the change.List of individual reviewers added to the change.
- 
Constructor SummaryConstructorsConstructorDescriptionReviewerResult(String input) Constructs a partially initialized result for the given reviewer.ReviewerResult(String reviewer, boolean confirm) Constructs a needs-confirmation result for the given account.ReviewerResult(String reviewer, String error) Constructs an error result for the given account.
- 
Method Summary
- 
Field Details- 
inputThe identifier of an account or group that was to be added/removed as a reviewer.
- 
errorIf non-null, a string describing why the reviewer could not be added/removed.
- 
confirmNon-null and true if the reviewer cannot be added without explicit confirmation. This may be the case for groups of a certain size. For removals, it's always false.
- 
reviewersList 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.
- 
ccsList of new 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.
- 
removedAn account removed from the change. Null if no accounts were removed.
 
- 
- 
Constructor Details- 
ReviewerResultConstructs a partially initialized result for the given reviewer.- Parameters:
- input- String identifier of an account or group, from user request
 
- 
ReviewerResultConstructs an error result for the given account.- Parameters:
- reviewer- String identifier of an account or group
- error- Error message
 
- 
ReviewerResultConstructs a needs-confirmation result for the given account.- Parameters:
- confirm- Whether confirmation is needed.
 
 
-