
com.zandero.rest.annotation.ResponseWriter 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 com.zandero.rest.writer.HttpResponseWriter;
import java.lang.annotation.*;
/**
* Indicates that the output will be written with given HttpResponseWriter
* allows routing of method result through a specific response writer
*
* @see HttpResponseWriter
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ResponseWriter {
Class extends HttpResponseWriter> value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy