Package com.google.gerrit.server.change
Interface MergeabilityCache
-
- All Known Implementing Classes:
MergeabilityCache.NotImplemented
,MergeabilityCacheImpl
public interface MergeabilityCache
Cache for mergeability of commits into destination branches.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MergeabilityCache.NotImplemented
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
get(org.eclipse.jgit.lib.ObjectId commit, org.eclipse.jgit.lib.Ref intoRef, SubmitType submitType, String mergeStrategy, BranchNameKey dest, org.eclipse.jgit.lib.Repository repo)
Boolean
getIfPresent(org.eclipse.jgit.lib.ObjectId commit, org.eclipse.jgit.lib.Ref intoRef, SubmitType submitType, String mergeStrategy)
-
-
-
Method Detail
-
get
boolean get(org.eclipse.jgit.lib.ObjectId commit, org.eclipse.jgit.lib.Ref intoRef, SubmitType submitType, String mergeStrategy, BranchNameKey dest, org.eclipse.jgit.lib.Repository repo)
-
getIfPresent
Boolean getIfPresent(org.eclipse.jgit.lib.ObjectId commit, org.eclipse.jgit.lib.Ref intoRef, SubmitType submitType, String mergeStrategy)
-
-