Class AttentionSetEntry
- java.lang.Object
-
- com.google.gerrit.extensions.common.AttentionSetEntry
-
public class AttentionSetEntry extends Object
Represents a single user included in the attention set. Used in the API. SeeAttentionSetUpdatefor the internal representation.See here for background.
-
-
Field Summary
Fields Modifier and Type Field Description AccountInfoaccountInfoThe user included in the attention set.TimestamplastUpdateThe timestamp of the last update.StringreasonThe human readable reason why the user was added.
-
Constructor Summary
Constructors Constructor Description AttentionSetEntry(AccountInfo accountInfo, Timestamp lastUpdate, String reason)
-
-
-
Field Detail
-
accountInfo
public AccountInfo accountInfo
The user included in the attention set.
-
lastUpdate
public Timestamp lastUpdate
The timestamp of the last update.
-
reason
public String reason
The human readable reason why the user was added.
-
-
Constructor Detail
-
AttentionSetEntry
public AttentionSetEntry(AccountInfo accountInfo, Timestamp lastUpdate, String reason)
-
-