Uses of Class
org.springframework.integration.transformer.AbstractTransformer
Package
Description
Provides classes supporting JSON in Spring Integration.
Contains core-implementation of various Transformers which includes Enrichers
and Filters.
Provides Transformer and Enricher implementations.
-
Uses of AbstractTransformer in org.springframework.integration.json
Modifier and TypeClassDescriptionclass
Transformer implementation that converts a JSON string payload into an instance of the provided target Class.class
Transformer implementation that converts a payload instance into a JSON string representation. -
Uses of AbstractTransformer in org.springframework.integration.transformer
Modifier and TypeClassDescriptionclass
A base class forTransformer
implementations that modify the payload of aMessage
.class
Transformer that stores a Message and returns a new Message whose payload is the id of the stored Message.class
Transformer that accepts a Message whose payload is a UUID and retrieves the Message associated with that id from a MessageStore if available.class
AbstractPayloadTransformer
that delegates to a codec to decode the payload from a byte[].class
AbstractPayloadTransformer
that delegates to a codec to encode the payload into a byte[].class
Will transform Map to an instance of Object.class
Transforms an object graph into a Map.class
A simple transformer that creates an outbound payload by invoking the inbound payload Object'stoString()
method.class
Transformer that deserializes the inbound byte array payload to an object by delegating to a Converter<byte[], Object>.class
Transformer that serializes the inbound payload into a byte array by delegating to a Converter<Object, byte[]>.class
Transformer that converts the inbound payload to an object by delegating to a Converter<Object, Object>.class
An Apache Avro transformer to create generatedSpecificRecord
objects frombyte[]
.class
An Apache Avro transformer for generatedSpecificRecord
objects.class
Transforms an InputStream payload to a byte[] or String (if a charset is provided).class
Transforms a packet in Syslog (RFC3164) format to a Map. -
Uses of AbstractTransformer in org.springframework.integration.xml.transformer
Modifier and TypeClassDescriptionclass
Super class for XML transformers.class
An implementation ofAbstractTransformer
that delegates to an OXMMarshaller
.class
Transforms the payload to aSource
using aSourceFactory
.class
An implementation ofTransformer
that delegates to an OXMUnmarshaller
.class
Transformer implementation that evaluates an XPath expression against the inbound Message payload and returns a Message whose payload is the result of that evaluation.class