public class Jaxb2XmlEncoder extends AbstractSingleValueEncoder<java.lang.Object>
@XmlElements
and
@XmlElement
can be used to specify how
collections should be marshalled.
Jaxb2XmlDecoder
logger
Constructor and Description |
---|
Jaxb2XmlEncoder() |
Modifier and Type | Method and Description |
---|---|
boolean |
canEncode(ResolvableType elementType,
MimeType mimeType)
Whether the encoder supports the given source element type and the MIME
type for the output stream.
|
protected reactor.core.publisher.Flux<DataBuffer> |
encode(java.lang.Object value,
DataBufferFactory dataBufferFactory,
ResolvableType type,
MimeType mimeType,
java.util.Map<java.lang.String,java.lang.Object> hints)
Encode
T to an output DataBuffer stream. |
encode
getEncodableMimeTypes, getLogger, setLogger
public boolean canEncode(ResolvableType elementType, @Nullable MimeType mimeType)
Encoder
canEncode
in interface Encoder<java.lang.Object>
canEncode
in class AbstractEncoder<java.lang.Object>
elementType
- the type of elements in the source streammimeType
- the MIME type for the output stream
(can be null
if not specified)true
if supported, false
otherwiseprotected reactor.core.publisher.Flux<DataBuffer> encode(java.lang.Object value, DataBufferFactory dataBufferFactory, ResolvableType type, @Nullable MimeType mimeType, @Nullable java.util.Map<java.lang.String,java.lang.Object> hints)
AbstractSingleValueEncoder
T
to an output DataBuffer
stream.encode
in class AbstractSingleValueEncoder<java.lang.Object>
value
- the value to processdataBufferFactory
- a buffer factory used to create the outputtype
- the stream element type to processmimeType
- the mime type to processhints
- additional information about how to do decode, optional