Uses of Interface
org.eclipse.jgit.transport.PreReceiveHook
-
Packages that use PreReceiveHook Package Description org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of PreReceiveHook in org.eclipse.jgit.transport
Classes in org.eclipse.jgit.transport that implement PreReceiveHook Modifier and Type Class Description classPreReceiveHookChainPreReceiveHookthat delegates to a list of other hooks.Fields in org.eclipse.jgit.transport declared as PreReceiveHook Modifier and Type Field Description private PreReceiveHook[]PreReceiveHookChain. hooksstatic PreReceiveHookPreReceiveHook. NULLA simple no-op hook.private PreReceiveHookReceivePack. preReceiveHook to validate the update commands before execution.Methods in org.eclipse.jgit.transport that return PreReceiveHook Modifier and Type Method Description PreReceiveHookReceivePack. getPreReceiveHook()Get the hook invoked before updates occur.static PreReceiveHookPreReceiveHookChain. newChain(java.util.List<? extends PreReceiveHook> hooks)Create a new hook chaining the given hooks together.Methods in org.eclipse.jgit.transport with parameters of type PreReceiveHook Modifier and Type Method Description voidReceivePack. setPreReceiveHook(PreReceiveHook h)Set the hook which is invoked prior to commands being executed.Method parameters in org.eclipse.jgit.transport with type arguments of type PreReceiveHook Modifier and Type Method Description static PreReceiveHookPreReceiveHookChain. newChain(java.util.List<? extends PreReceiveHook> hooks)Create a new hook chaining the given hooks together.Constructors in org.eclipse.jgit.transport with parameters of type PreReceiveHook Constructor Description PreReceiveHookChain(PreReceiveHook[] hooks, int count)
-