Package com.google.gerrit.server.data
Class ChangeAttribute
- java.lang.Object
-
- com.google.gerrit.server.data.ChangeAttribute
-
public class ChangeAttribute extends Object
A selection of change properties used in events. Suitable for serialization to JSON.- See Also:
EventFactory
-
-
Field Summary
-
Constructor Summary
Constructors Constructor Description ChangeAttribute()
-
-
-
Field Detail
-
project
public String project
-
branch
public String branch
-
topic
public String topic
-
id
public String id
-
number
public int number
-
subject
public String subject
-
owner
public AccountAttribute owner
-
assignee
public AccountAttribute assignee
-
url
public String url
-
commitMessage
public String commitMessage
-
cherryPickOfChange
public Integer cherryPickOfChange
-
cherryPickOfPatchSet
public Integer cherryPickOfPatchSet
-
createdOn
public Long createdOn
-
lastUpdated
public Long lastUpdated
-
open
public Boolean open
-
status
public Change.Status status
-
comments
public List<MessageAttribute> comments
-
wip
public Boolean wip
-
isPrivate
@SerializedName("private") public Boolean isPrivate
-
trackingIds
public List<TrackingIdAttribute> trackingIds
-
currentPatchSet
public PatchSetAttribute currentPatchSet
-
patchSets
public List<PatchSetAttribute> patchSets
-
dependsOn
public List<DependencyAttribute> dependsOn
-
neededBy
public List<DependencyAttribute> neededBy
-
submitRecords
public List<SubmitRecordAttribute> submitRecords
-
allReviewers
public List<AccountAttribute> allReviewers
-
plugins
public List<PluginDefinedInfo> plugins
-
-