public abstract class EntityWriter<T> extends Object implements javax.ws.rs.ext.MessageBodyWriter<T>
| Modifier and Type | Field and Description |
|---|---|
protected com.fasterxml.jackson.core.JsonFactory |
factory |
| Constructor and Description |
|---|
EntityWriter() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract String |
getEntityType()
get the Entity type of the current entity type.
|
long |
getSize(T t,
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 |
writeEntity(com.fasterxml.jackson.core.JsonGenerator jg,
T item) |
protected abstract void |
writeEntityBody(com.fasterxml.jackson.core.JsonGenerator jg,
T item)
Write the body of the entity.
|
void |
writeTo(T entity,
Class<?> type,
Type genericType,
Annotation[] annotations,
javax.ws.rs.core.MediaType mediaType,
javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders,
OutputStream entityStream) |
@Context protected com.fasterxml.jackson.core.JsonFactory factory
public EntityWriter()
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
isWriteable in interface javax.ws.rs.ext.MessageBodyWriter<T>public long getSize(T t, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
getSize in interface javax.ws.rs.ext.MessageBodyWriter<T>public void writeTo(T entity, 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
writeTo in interface javax.ws.rs.ext.MessageBodyWriter<T>IOExceptionjavax.ws.rs.WebApplicationExceptionpublic void writeEntity(com.fasterxml.jackson.core.JsonGenerator jg, T item) throws IOException
IOExceptionprotected abstract void writeEntityBody(com.fasterxml.jackson.core.JsonGenerator jg, T item) throws IOException
IOExceptionprotected abstract String getEntityType()
Copyright © 2019 Nuxeo. All rights reserved.