Class JsonValueProvider
- java.lang.Object
-
- org.jboss.resteasy.plugins.providers.jsonp.AbstractJsonpProvider
-
- org.jboss.resteasy.plugins.providers.jsonp.JsonValueProvider
-
- All Implemented Interfaces:
jakarta.ws.rs.ext.MessageBodyReader<jakarta.json.JsonValue>
,jakarta.ws.rs.ext.MessageBodyWriter<jakarta.json.JsonValue>
,AsyncBufferedMessageBodyWriter<jakarta.json.JsonValue>
,AsyncMessageBodyWriter<jakarta.json.JsonValue>
@Consumes({"application/json","application/*+json","text/json"}) @Produces({"application/json","application/*+json","text/json"}) public class JsonValueProvider extends AbstractJsonpProvider implements jakarta.ws.rs.ext.MessageBodyReader<jakarta.json.JsonValue>, AsyncBufferedMessageBodyWriter<jakarta.json.JsonValue>
- Author:
- Jim Ma
-
-
Constructor Summary
Constructors Constructor Description JsonValueProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getSize(jakarta.json.JsonValue jsonStructure, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
boolean
isReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
boolean
isWriteable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
jakarta.json.JsonValue
readFrom(Class<jakarta.json.JsonValue> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream)
void
writeTo(jakarta.json.JsonValue jsonValue, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
-
Methods inherited from class org.jboss.resteasy.plugins.providers.jsonp.AbstractJsonpProvider
findReader, findWriter, getCharset
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jboss.resteasy.core.messagebody.AsyncBufferedMessageBodyWriter
asyncWriteTo
-
-
-
-
Method Detail
-
isReadable
public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
- Specified by:
isReadable
in interfacejakarta.ws.rs.ext.MessageBodyReader<jakarta.json.JsonValue>
-
readFrom
public jakarta.json.JsonValue readFrom(Class<jakarta.json.JsonValue> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType, jakarta.ws.rs.core.MultivaluedMap<String,String> httpHeaders, InputStream entityStream) throws IOException, jakarta.ws.rs.WebApplicationException
- Specified by:
readFrom
in interfacejakarta.ws.rs.ext.MessageBodyReader<jakarta.json.JsonValue>
- Throws:
IOException
jakarta.ws.rs.WebApplicationException
-
isWriteable
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
- Specified by:
isWriteable
in interfacejakarta.ws.rs.ext.MessageBodyWriter<jakarta.json.JsonValue>
-
getSize
public long getSize(jakarta.json.JsonValue jsonStructure, Class<?> type, Type genericType, Annotation[] annotations, jakarta.ws.rs.core.MediaType mediaType)
- Specified by:
getSize
in interfacejakarta.ws.rs.ext.MessageBodyWriter<jakarta.json.JsonValue>
-
writeTo
public void writeTo(jakarta.json.JsonValue jsonValue, 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 interfacejakarta.ws.rs.ext.MessageBodyWriter<jakarta.json.JsonValue>
- Throws:
IOException
jakarta.ws.rs.WebApplicationException
-
-