Package org.eclipse.jgit.transport
Class AdvertiseRefsHookChain
- java.lang.Object
-
- org.eclipse.jgit.transport.AdvertiseRefsHookChain
-
- All Implemented Interfaces:
AdvertiseRefsHook
public class AdvertiseRefsHookChain extends java.lang.Object implements AdvertiseRefsHook
AdvertiseRefsHook
that delegates to a list of other hooks.Hooks are run in the order passed to the constructor. A hook may inspect or modify the results of the previous hooks in the chain by calling
UploadPack.getAdvertisedRefs()
, orBaseReceivePack.getAdvertisedRefs()
orBaseReceivePack.getAdvertisedObjects()
.
-
-
Field Summary
-
Fields inherited from interface org.eclipse.jgit.transport.AdvertiseRefsHook
DEFAULT
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
advertiseRefs(BaseReceivePack rp)
Advertise refs for receive-pack.void
advertiseRefs(UploadPack rp)
Advertise refs for upload-pack.static AdvertiseRefsHook
newChain(java.util.List<? extends AdvertiseRefsHook> hooks)
Create a new hook chaining the given hooks together.
-
-
-
Method Detail
-
newChain
public static AdvertiseRefsHook newChain(java.util.List<? extends AdvertiseRefsHook> hooks)
Create a new hook chaining the given hooks together.- Parameters:
hooks
- hooks to execute, in order.- Returns:
- a new hook chain of the given hooks.
-
advertiseRefs
public void advertiseRefs(BaseReceivePack rp) throws ServiceMayNotContinueException
Description copied from interface:AdvertiseRefsHook
Advertise refs for receive-pack.- Specified by:
advertiseRefs
in interfaceAdvertiseRefsHook
- Parameters:
rp
- instance on which to callBaseReceivePack.setAdvertisedRefs(java.util.Map,java.util.Set)
if necessary.- Throws:
ServiceMayNotContinueException
- abort; the message will be sent to the user.
-
advertiseRefs
public void advertiseRefs(UploadPack rp) throws ServiceMayNotContinueException
Description copied from interface:AdvertiseRefsHook
Advertise refs for upload-pack.- Specified by:
advertiseRefs
in interfaceAdvertiseRefsHook
- Parameters:
rp
- instance on which to callUploadPack.setAdvertisedRefs(java.util.Map)
if necessary.- Throws:
ServiceMayNotContinueException
- abort; the message will be sent to the user.
-
-