Package | Description |
---|---|
org.springframework.integration.file.transformer |
Provides classes supporting the transformation of file contents
to messages.
|
org.springframework.integration.json |
Provides classes supporting JSON in Spring Integration.
|
org.springframework.integration.mail.transformer |
Provides classes related to transforming mail messages.
|
org.springframework.integration.transformer |
Contains core-implementation of various Transformers which includes Enrichers
and Filters.
|
org.springframework.integration.xml.transformer |
Provides Transformer and Enricher implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractFilePayloadTransformer<T>
Base class for transformers that convert a File payload.
|
class |
FileToByteArrayTransformer
A payload transformer that copies a File's contents to a byte array.
|
class |
FileToStringTransformer
A payload transformer that copies a File's contents to a String.
|
Modifier and Type | Class and Description |
---|---|
class |
JsonToObjectTransformer
Transformer implementation that converts a JSON string payload into an instance of the provided target Class.
|
class |
ObjectToJsonTransformer
Transformer implementation that converts a payload instance into a JSON string representation.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMailMessageTransformer<T>
Base class for Transformers that convert from a JavaMail Message to a
Spring Integration Message.
|
class |
MailToStringTransformer
Transforms a Message payload of type
Message to a String. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMessageProcessingTransformer
Base class for Message Transformers that delegate to a
MessageProcessor . |
class |
AbstractPayloadTransformer<T,U>
A base class for
Transformer implementations that modify the payload
of a Message . |
class |
AbstractTransformer
A base class for
Transformer implementations. |
class |
ClaimCheckInTransformer
Transformer that stores a Message and returns a new Message whose payload
is the id of the stored Message.
|
class |
ClaimCheckOutTransformer
Transformer that accepts a Message whose payload is a UUID and retrieves the Message associated
with that id from a MessageStore if available.
|
class |
ExpressionEvaluatingTransformer
A Message Transformer implementation that evaluates the specified SpEL
expression.
|
class |
HeaderEnricher
A Transformer that adds statically configured header values to a Message.
|
class |
HeaderFilter
Transformer that removes Message headers.
|
class |
MapToObjectTransformer
Will transform Map to an instance of Object.
|
class |
MethodInvokingTransformer
A Message Transformer implementation that invokes the specified method
on the given object.
|
class |
ObjectToMapTransformer
Will transform an object graph into a Map.
|
class |
ObjectToStringTransformer
A simple transformer that creates an outbound payload by invoking the
inbound payload Object's
toString() method. |
class |
PayloadDeserializingTransformer
Transformer that deserializes the inbound byte array payload to an object by delegating to a
Converter<byte[], Object>.
|
class |
PayloadSerializingTransformer
Transformer that serializes the inbound payload into a byte array by delegating to a
Converter<Object, byte[]>.
|
class |
PayloadTypeConvertingTransformer<T,U>
Transformer that converts the inbound payload to an object by delegating to a
Converter<Object, Object>.
|
class |
SyslogToMapTransformer
Transforms a packet in Syslog (RFC3164) format to a Map.
|
Constructor and Description |
---|
MessageTransformingChannelInterceptor(Transformer transformer)
Deprecated.
|
MessageTransformingHandler(Transformer transformer)
Create a
MessageTransformingHandler instance that delegates to
the provided Transformer . |
Modifier and Type | Class and Description |
---|---|
class |
MarshallingTransformer
An implementation of
AbstractTransformer that delegates to an OXM Marshaller . |
class |
SourceCreatingTransformer
Transforms the payload to a
Source using a SourceFactory . |
class |
UnmarshallingTransformer
An implementation of
Transformer that delegates to an OXM
Unmarshaller . |
class |
XPathHeaderEnricher
Transformer implementation that evaluates XPath expressions against the
message payload and inserts the result of the evaluation into a message
header.
|
class |
XPathTransformer
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 |
XsltPayloadTransformer
|
Copyright © 2016. All rights reserved.