Package com.google.gerrit.server.git
Class BanCommitResult
- java.lang.Object
-
- com.google.gerrit.server.git.BanCommitResult
-
public class BanCommitResult extends Object
-
-
Constructor Summary
Constructors Constructor Description BanCommitResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
commitAlreadyBanned(org.eclipse.jgit.lib.ObjectId commitId)
void
commitBanned(org.eclipse.jgit.lib.ObjectId commitId)
List<org.eclipse.jgit.lib.ObjectId>
getAlreadyBannedCommits()
List<org.eclipse.jgit.lib.ObjectId>
getIgnoredObjectIds()
List<org.eclipse.jgit.lib.ObjectId>
getNewlyBannedCommits()
void
notACommit(org.eclipse.jgit.lib.ObjectId id)
-
-
-
Method Detail
-
commitBanned
public void commitBanned(org.eclipse.jgit.lib.ObjectId commitId)
-
commitAlreadyBanned
public void commitAlreadyBanned(org.eclipse.jgit.lib.ObjectId commitId)
-
notACommit
public void notACommit(org.eclipse.jgit.lib.ObjectId id)
-
getNewlyBannedCommits
public List<org.eclipse.jgit.lib.ObjectId> getNewlyBannedCommits()
-
getAlreadyBannedCommits
public List<org.eclipse.jgit.lib.ObjectId> getAlreadyBannedCommits()
-
getIgnoredObjectIds
public List<org.eclipse.jgit.lib.ObjectId> getIgnoredObjectIds()
-
-