Package com.google.gerrit.server.update
Interface PostUpdateContext
- 
- All Superinterfaces:
- Context
 
 public interface PostUpdateContext extends Context Context for performing theRepoOnlyOp.postUpdate(com.google.gerrit.server.update.PostUpdateContext)phase.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ChangeDatagetChangeData(Change change)ChangeDatagetChangeData(Project.NameKey projectName, Change.Id changeId)Get the change data for the specified change.default ChangeDatagetChangeData(ChangeNotes changeNotes)- 
Methods inherited from interface com.google.gerrit.server.update.ContextgetAccount, getAccountId, getIdentifiedUser, getNotify, getProject, getRepoView, getRevWalk, getUser, getWhen, getZoneId, newCommitterIdent, newCommitterIdent, newPersonIdent
 
- 
 
- 
- 
- 
Method Detail- 
getChangeDataChangeData getChangeData(Project.NameKey projectName, Change.Id changeId) Get the change data for the specified change.If the change data has been computed previously, because the change has been indexed after an update or because this method has been invoked before, the cached change data instance is returned. - Parameters:
- changeId- the ID of the change for which the change data should be returned
 
 - 
getChangeDatadefault ChangeData getChangeData(Change change) 
 - 
getChangeDatadefault ChangeData getChangeData(ChangeNotes changeNotes) 
 
- 
 
-