Package com.google.gerrit.server.change
Class ReviewerOp.Result
- java.lang.Object
-
- com.google.gerrit.server.change.ReviewerOp.Result
-
- Enclosing class:
- ReviewerOp
public abstract static class ReviewerOp.Result extends Object
-
-
Constructor Summary
Constructors Constructor Description Result()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract com.google.common.collect.ImmutableList<Account.Id>
addedCCs()
abstract com.google.common.collect.ImmutableList<Address>
addedCCsByEmail()
abstract com.google.common.collect.ImmutableList<PatchSetApproval>
addedReviewers()
abstract com.google.common.collect.ImmutableList<Address>
addedReviewersByEmail()
abstract Optional<Account.Id>
deletedReviewer()
abstract Optional<Address>
deletedReviewerByEmail()
-
-
-
Method Detail
-
addedReviewers
public abstract com.google.common.collect.ImmutableList<PatchSetApproval> addedReviewers()
-
addedReviewersByEmail
public abstract com.google.common.collect.ImmutableList<Address> addedReviewersByEmail()
-
addedCCs
public abstract com.google.common.collect.ImmutableList<Account.Id> addedCCs()
-
addedCCsByEmail
public abstract com.google.common.collect.ImmutableList<Address> addedCCsByEmail()
-
deletedReviewer
public abstract Optional<Account.Id> deletedReviewer()
-
-