
com.zandero.rest.annotation.Post Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest.vertx Show documentation
Show all versions of rest.vertx Show documentation
JAX-RS REST annotation processor for vert.x verticals
The newest version!
package com.zandero.rest.annotation;
import javax.ws.rs.HttpMethod;
import java.lang.annotation.*;
/**
*
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@HttpMethod("POST")
@Documented
public @interface Post {
String value() default ""; // same as @Path
String[] produces() default "*/*"; // same as @Produces
String[] consumes() default "*/*"; // same as @Consumes
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy