Class JsonCollectionWriter
- java.lang.Object
-
- com.tangosol.coherence.rest.providers.JsonCollectionWriter
-
- All Implemented Interfaces:
javax.ws.rs.ext.MessageBodyWriter<Object>
@Provider @Produces("application/json") public class JsonCollectionWriter extends Object implements javax.ws.rs.ext.MessageBodyWriter<Object>
Provider responsible for converting Java collections to a JSON formatted stream.- Author:
- vp 2011.06.29
-
-
Field Summary
Fields Modifier and Type Field Description protected MarshallerRegistry
m_marshallerRegistry
Marshaller registry to obtain element marshallers from.
-
Constructor Summary
Constructors Constructor Description JsonCollectionWriter()
Default constructor.JsonCollectionWriter(MarshallerRegistry registry)
Construct a JsonCollectionWriter instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getSize(Object col, Class<?> clz, Type type, Annotation[] aAnnotation, javax.ws.rs.core.MediaType mediaType)
boolean
isWriteable(Class<?> clz, Type type, Annotation[] aAnnotation, javax.ws.rs.core.MediaType mediaType)
void
writeTo(Object oCol, Class<?> clz, Type type, Annotation[] aAnnotation, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream stream)
-
-
-
Field Detail
-
m_marshallerRegistry
@Inject protected MarshallerRegistry m_marshallerRegistry
Marshaller registry to obtain element marshallers from.
-
-
Constructor Detail
-
JsonCollectionWriter
public JsonCollectionWriter()
Default constructor.
-
JsonCollectionWriter
public JsonCollectionWriter(MarshallerRegistry registry)
Construct a JsonCollectionWriter instance.- Parameters:
registry
- marshaller registry to use
-
-
Method Detail
-
isWriteable
public boolean isWriteable(Class<?> clz, Type type, Annotation[] aAnnotation, javax.ws.rs.core.MediaType mediaType)
- Specified by:
isWriteable
in interfacejavax.ws.rs.ext.MessageBodyWriter<Object>
-
getSize
public long getSize(Object col, Class<?> clz, Type type, Annotation[] aAnnotation, javax.ws.rs.core.MediaType mediaType)
- Specified by:
getSize
in interfacejavax.ws.rs.ext.MessageBodyWriter<Object>
-
writeTo
public void writeTo(Object oCol, Class<?> clz, Type type, Annotation[] aAnnotation, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream stream) throws IOException, javax.ws.rs.WebApplicationException
- Specified by:
writeTo
in interfacejavax.ws.rs.ext.MessageBodyWriter<Object>
- Throws:
IOException
javax.ws.rs.WebApplicationException
-
-