package com.github.aesteve.vertx.nubes.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marker annotation to specify that this method returns a file */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface File { String value() default ""; }