Package com.google.gerrit.server.patch
Interface PatchListCache
-
- All Known Implementing Classes:
PatchListCacheImpl
public interface PatchListCache
Provides a cached list ofPatchListEntry
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PatchList
get(Change change, PatchSet patchSet)
PatchList
get(PatchListKey key, Project.NameKey project)
DiffSummary
getDiffSummary(DiffSummaryKey key, Project.NameKey project)
IntraLineDiff
getIntraLineDiff(IntraLineDiffKey key, IntraLineDiffArgs args)
org.eclipse.jgit.lib.ObjectId
getOldId(Change change, PatchSet patchSet, Integer parentNum)
-
-
-
Method Detail
-
get
PatchList get(PatchListKey key, Project.NameKey project) throws PatchListNotAvailableException
- Throws:
PatchListNotAvailableException
-
get
PatchList get(Change change, PatchSet patchSet) throws PatchListNotAvailableException
- Throws:
PatchListNotAvailableException
-
getOldId
org.eclipse.jgit.lib.ObjectId getOldId(Change change, PatchSet patchSet, Integer parentNum) throws PatchListNotAvailableException
- Throws:
PatchListNotAvailableException
-
getIntraLineDiff
IntraLineDiff getIntraLineDiff(IntraLineDiffKey key, IntraLineDiffArgs args)
-
getDiffSummary
DiffSummary getDiffSummary(DiffSummaryKey key, Project.NameKey project) throws PatchListNotAvailableException
- Throws:
PatchListNotAvailableException
-
-