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

com.google.gerrit.server.AssigneeStatusUpdate Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
package com.google.gerrit.server;

import com.google.auto.value.AutoValue;
import com.google.gerrit.entities.Account;
import java.sql.Timestamp;
import java.util.Optional;

/** Change to an assignee's status. */
@AutoValue
public abstract class AssigneeStatusUpdate {
  public static AssigneeStatusUpdate create(
      Timestamp ts, Account.Id updatedBy, Optional currentAssignee) {
    return new AutoValue_AssigneeStatusUpdate(ts, updatedBy, currentAssignee);
  }

  public abstract Timestamp date();

  public abstract Account.Id updatedBy();

  public abstract Optional currentAssignee();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy