Package com.google.gerrit.server.git
Interface ReceivePackInitializer
- 
 public interface ReceivePackInitializer
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit(Project.NameKey project, org.eclipse.jgit.transport.ReceivePack receivePack)ReceivePack initialization.
 
- 
- 
- 
Method Detail- 
initvoid init(Project.NameKey project, org.eclipse.jgit.transport.ReceivePack receivePack) ReceivePack initialization.Invoked by Gerrit when a new ReceivePack instance is created and just before it is used. Implementors will usually call setXXX methods on the receivePack parameter in order to set additional properties on it. - Parameters:
- project- project for which the ReceivePack is created
- receivePack- the ReceivePack instance which is being initialized
 
 
- 
 
-