Package com.google.gerrit.server
Class AssigneeStatusUpdate
- java.lang.Object
-
- com.google.gerrit.server.AssigneeStatusUpdate
-
public abstract class AssigneeStatusUpdate extends Object
Change to an assignee's status.
-
-
Constructor Summary
Constructors Constructor Description AssigneeStatusUpdate()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static AssigneeStatusUpdate
create(Timestamp ts, Account.Id updatedBy, Optional<Account.Id> currentAssignee)
abstract Optional<Account.Id>
currentAssignee()
abstract Timestamp
date()
abstract Account.Id
updatedBy()
-
-
-
Method Detail
-
create
public static AssigneeStatusUpdate create(Timestamp ts, Account.Id updatedBy, Optional<Account.Id> currentAssignee)
-
date
public abstract Timestamp date()
-
updatedBy
public abstract Account.Id updatedBy()
-
currentAssignee
public abstract Optional<Account.Id> currentAssignee()
-
-