f8b9266292ba7b65d1a0dc36200cc43e93f9c8af
[percentcodec] / cachecontrol / src / main / java / de / halbekunst / juplo / cachecontrol / annotations / AdditionalHeaders.java
1 package de.halbekunst.juplo.cachecontrol.annotations;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 /**
9  *
10  * @author kai
11  */
12 @Retention(RetentionPolicy.RUNTIME)
13 @Target({ ElementType.TYPE, ElementType.METHOD })
14 public @interface AdditionalHeaders {
15
16   String[] value() default {};
17 }