tech.greenfield.vertx.irked.annotations.Delete 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.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Annotation to configure a route to handle DELETE requests
* @author odeda
*/
@Repeatable(Deletes.class)
@Retention(RetentionPolicy.RUNTIME)
public @interface Delete {
/**
* Path on which to accept the DELETE request
* @return path
*/
String value();
}