tech.greenfield.vertx.irked.annotations.Options Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irked-vertx Show documentation
Show all versions of irked-vertx Show documentation
Opinionated framework for vertx-web route configuration and dispatch
package tech.greenfield.vertx.irked.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Annotation to configure a route to handle OPTIONS requests
* @author odeda
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface Options {
/**
* Path on which to handle OPTIONS requests
* @return path
*/
String value();
}