Introduce extension point for scm http requests

This commit is contained in:
René Pfeuffer
2018-09-14 08:49:09 +02:00
parent c5daacfd58
commit a075962a66
6 changed files with 48 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
package sonia.scm.web;
import com.google.inject.BindingAnnotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@BindingAnnotation
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
@interface Git {
}