Class JsonObjectWriter

java.lang.Object
io.quarkus.resteasy.runtime.vertx.JsonObjectWriter
All Implemented Interfaces:
jakarta.ws.rs.ext.MessageBodyWriter<io.vertx.core.json.JsonObject>, org.jboss.resteasy.spi.AsyncMessageBodyWriter<io.vertx.core.json.JsonObject>

@Provider @Produces("application/json") public class JsonObjectWriter extends Object implements org.jboss.resteasy.spi.AsyncMessageBodyWriter<io.vertx.core.json.JsonObject>
A body writer that allows to return a Vert.x JsonObject as JAX-RS response content.
Author:
Thomas Segismont
  • Constructor Details

    • JsonObjectWriter

      public JsonObjectWriter()
  • Method Details

    • isWriteable

      public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
      Specified by:
      isWriteable in interface jakarta.ws.rs.ext.MessageBodyWriter<io.vertx.core.json.JsonObject>
    • writeTo

      public void writeTo(io.vertx.core.json.JsonObject jsonObject, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) throws IOException, jakarta.ws.rs.WebApplicationException
      Specified by:
      writeTo in interface jakarta.ws.rs.ext.MessageBodyWriter<io.vertx.core.json.JsonObject>
      Throws:
      IOException
      jakarta.ws.rs.WebApplicationException
    • asyncWriteTo

      public CompletionStage<Void> asyncWriteTo(io.vertx.core.json.JsonObject jsonObject, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, org.jboss.resteasy.spi.AsyncOutputStream entityStream)
      Specified by:
      asyncWriteTo in interface org.jboss.resteasy.spi.AsyncMessageBodyWriter<io.vertx.core.json.JsonObject>