public class Jaxb2XmlEncoder extends AbstractSingleValueEncoder<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(Object value,
DataBufferFactory bufferFactory,
ResolvableType type,
MimeType mimeType,
Map<String,Object> hints)
Encode
T to an output DataBuffer stream. |
Function<Marshaller,Marshaller> |
getMarshallerProcessor()
Return the configured processor for customizing Marshaller instances.
|
void |
setMarshallerProcessor(Function<Marshaller,Marshaller> processor)
Configure a processor function to customize Marshaller instances.
|
encode
getEncodableMimeTypes, getLogger, setLogger
public void setMarshallerProcessor(Function<Marshaller,Marshaller> processor)
processor
- the function to usepublic Function<Marshaller,Marshaller> getMarshallerProcessor()
public boolean canEncode(ResolvableType elementType, @Nullable MimeType mimeType)
Encoder
protected reactor.core.publisher.Flux<DataBuffer> encode(Object value, DataBufferFactory bufferFactory, ResolvableType type, @Nullable MimeType mimeType, @Nullable Map<String,Object> hints)
AbstractSingleValueEncoder
T
to an output DataBuffer
stream.encode
in class AbstractSingleValueEncoder<Object>
value
- the value to processbufferFactory
- 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