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