Package com.google.gerrit.server
Class ReviewerStatusUpdate
- java.lang.Object
-
- com.google.gerrit.server.ReviewerStatusUpdate
-
public abstract class ReviewerStatusUpdate extends Object
Change to a reviewer's status.
-
-
Constructor Summary
Constructors Constructor Description ReviewerStatusUpdate()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ReviewerStatusUpdate
create(Timestamp ts, Account.Id updatedBy, Account.Id reviewer, ReviewerStateInternal state)
abstract Timestamp
date()
abstract Account.Id
reviewer()
abstract ReviewerStateInternal
state()
abstract Account.Id
updatedBy()
-
-
-
Method Detail
-
create
public static ReviewerStatusUpdate create(Timestamp ts, Account.Id updatedBy, Account.Id reviewer, ReviewerStateInternal state)
-
date
public abstract Timestamp date()
-
updatedBy
public abstract Account.Id updatedBy()
-
reviewer
public abstract Account.Id reviewer()
-
state
public abstract ReviewerStateInternal state()
-
-