Package | Description |
---|---|
org.eclipse.jgit.transport |
Transport (fetch/push) for different protocols.
|
Modifier and Type | Class and Description |
---|---|
class |
PostUploadHookChain
PostUploadHook that delegates to a list of
other hooks. |
Modifier and Type | Field and Description |
---|---|
static PostUploadHook |
PostUploadHook.NULL
A simple no-op hook.
|
private PostUploadHook |
UploadPack.postUploadHook
Hook for taking post upload actions.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<PostUploadHook> |
PostUploadHookChain.hooks |
Modifier and Type | Method and Description |
---|---|
PostUploadHook |
UploadPack.getPostUploadHook()
Get the configured post upload hook.
|
static PostUploadHook |
PostUploadHookChain.newChain(java.util.List<PostUploadHook> hooks)
Create a new hook chaining the given hooks together.
|
Modifier and Type | Method and Description |
---|---|
void |
UploadPack.setPostUploadHook(PostUploadHook hook)
Set the hook for post upload actions (logging, repacking).
|
Modifier and Type | Method and Description |
---|---|
static PostUploadHook |
PostUploadHookChain.newChain(java.util.List<PostUploadHook> hooks)
Create a new hook chaining the given hooks together.
|
Constructor and Description |
---|
PostUploadHookChain(java.util.List<PostUploadHook> hooks) |