Package com.wavefront.agent
Class JsonNodeWriter
- java.lang.Object
-
- com.wavefront.agent.JsonNodeWriter
-
- All Implemented Interfaces:
javax.ws.rs.ext.MessageBodyWriter<com.fasterxml.jackson.databind.JsonNode>
public class JsonNodeWriter extends Object implements javax.ws.rs.ext.MessageBodyWriter<com.fasterxml.jackson.databind.JsonNode>
Writer that serializes JsonNodes.- Author:
- Clement Pang ([email protected])
-
-
Constructor Summary
Constructors Constructor Description JsonNodeWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getSize(com.fasterxml.jackson.databind.JsonNode jsonNode, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
boolean
isWriteable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
void
writeTo(com.fasterxml.jackson.databind.JsonNode jsonNode, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
-
-
-
Method Detail
-
isWriteable
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
- Specified by:
isWriteable
in interfacejavax.ws.rs.ext.MessageBodyWriter<com.fasterxml.jackson.databind.JsonNode>
-
getSize
public long getSize(com.fasterxml.jackson.databind.JsonNode jsonNode, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
- Specified by:
getSize
in interfacejavax.ws.rs.ext.MessageBodyWriter<com.fasterxml.jackson.databind.JsonNode>
-
writeTo
public void writeTo(com.fasterxml.jackson.databind.JsonNode jsonNode, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) throws IOException, javax.ws.rs.WebApplicationException
- Specified by:
writeTo
in interfacejavax.ws.rs.ext.MessageBodyWriter<com.fasterxml.jackson.databind.JsonNode>
- Throws:
IOException
javax.ws.rs.WebApplicationException
-
-