Uses of Interface
org.eclipse.jgit.transport.PostReceiveHook
-
Packages that use PostReceiveHook Package Description org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of PostReceiveHook in org.eclipse.jgit.transport
Classes in org.eclipse.jgit.transport that implement PostReceiveHook Modifier and Type Class Description classPostReceiveHookChainPostReceiveHookthat delegates to a list of other hooks.Fields in org.eclipse.jgit.transport declared as PostReceiveHook Modifier and Type Field Description private PostReceiveHook[]PostReceiveHookChain. hooksstatic PostReceiveHookPostReceiveHook. NULLA simple no-op hook.private PostReceiveHookReceivePack. postReceiveHook to report on the commands after execution.Methods in org.eclipse.jgit.transport that return PostReceiveHook Modifier and Type Method Description PostReceiveHookReceivePack. getPostReceiveHook()Get the hook invoked after updates occur.static PostReceiveHookPostReceiveHookChain. newChain(java.util.List<? extends PostReceiveHook> hooks)Create a new hook chaining the given hooks together.Methods in org.eclipse.jgit.transport with parameters of type PostReceiveHook Modifier and Type Method Description voidReceivePack. setPostReceiveHook(PostReceiveHook h)Set the hook which is invoked after commands are executed.Method parameters in org.eclipse.jgit.transport with type arguments of type PostReceiveHook Modifier and Type Method Description static PostReceiveHookPostReceiveHookChain. newChain(java.util.List<? extends PostReceiveHook> hooks)Create a new hook chaining the given hooks together.Constructors in org.eclipse.jgit.transport with parameters of type PostReceiveHook Constructor Description PostReceiveHookChain(PostReceiveHook[] hooks, int count)
-