Class XmlKeysWriter
java.lang.Object
com.tangosol.coherence.rest.providers.XmlKeysWriter
- All Implemented Interfaces:
jakarta.ws.rs.ext.MessageBodyWriter<Set>
@Provider
@Produces("application/xml")
public class XmlKeysWriter
extends Object
implements jakarta.ws.rs.ext.MessageBodyWriter<Set>
Provider responsible for converting set of keys to a XML formatted
stream.
- Author:
- si 2016.05.17
-
Field Summary
Modifier and TypeFieldDescriptionprotected MarshallerRegistry
Marshaller registry to obtain element marshallers from. -
Constructor Summary
ConstructorDescriptionDefault constructor.XmlKeysWriter
(MarshallerRegistry registry) Construct an XmlKeysWriter instance. -
Method Summary
Modifier and TypeMethodDescriptionlong
getSize
(Set set, 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
(Set set, 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
-
XmlKeysWriter
public XmlKeysWriter()Default constructor. -
XmlKeysWriter
Construct an XmlKeysWriter 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<Set>
-
getSize
public long getSize(Set set, Class<?> clz, Type type, Annotation[] aAnnotation, jakarta.ws.rs.core.MediaType mediaType) - Specified by:
getSize
in interfacejakarta.ws.rs.ext.MessageBodyWriter<Set>
-
writeTo
public void writeTo(Set set, 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<Set>
- Throws:
IOException
jakarta.ws.rs.WebApplicationException
-