Uses of Interface
org.springframework.integration.transformer.Transformer
Package
Description
Base package for configuration.
Provides classes supporting the transformation of file contents
to messages.
Provides classes supporting JSON in Spring Integration.
Provides classes related to transforming mail messages.
Contains core-implementation of various Transformers which includes Enrichers
and Filters.
Provides Transformer and Enricher implementations.
-
Uses of Transformer in org.springframework.integration.config
Modifier and TypeMethodDescriptionprotected MessageTransformingHandler
TransformerFactoryBean.createHandler
(Transformer transformer) -
Uses of Transformer in org.springframework.integration.file.transformer
Modifier and TypeClassDescriptionclass
Base class for transformers that convert a File payload.class
A payload transformer that copies a File's contents to a byte array.class
A payload transformer that copies a File's contents to a String. -
Uses of Transformer 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 Transformer in org.springframework.integration.mail.transformer
Modifier and TypeClassDescriptionclass
Base class for Transformers that convert from a JavaMail Message to a Spring Integration Message.class
Transforms a Message payload of typeMessage
to a String. -
Uses of Transformer in org.springframework.integration.transformer
Modifier and TypeClassDescriptionclass
Base class for Message Transformers that delegate to aMessageProcessor
.class
A base class forTransformer
implementations that modify the payload of aMessage
.class
A base class forTransformer
implementations.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
A Message Transformer implementation that evaluates the specified SpEL expression.class
A Transformer that adds statically configured header values to a Message.class
Transformer that removes Message headers.class
Will transform Map to an instance of Object.class
A Message Transformer implementation that invokes the specified method on the given 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.ModifierConstructorDescriptionMessageTransformingHandler
(Transformer transformer) Create aMessageTransformingHandler
instance that delegates to the providedTransformer
. -
Uses of Transformer 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 XPath expressions against the message payload and inserts the result of the evaluation into a message header.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