diff --git a/docs/src/reference/docbook/chain.xml b/docs/src/reference/docbook/chain.xml index 1ae62b1d53..f086446d60 100644 --- a/docs/src/reference/docbook/chain.xml +++ b/docs/src/reference/docbook/chain.xml @@ -50,7 +50,7 @@
- The <chain> Element + Configuring Chain The <chain> element provides an 'input-channel' attribute, and if the last element in the chain is capable of producing reply messages (optional), it also supports an 'output-channel' attribute. The sub-elements are then diff --git a/docs/src/reference/docbook/delayer.xml b/docs/src/reference/docbook/delayer.xml index dd4c42c2e0..b97ed14ad4 100644 --- a/docs/src/reference/docbook/delayer.xml +++ b/docs/src/reference/docbook/delayer.xml @@ -17,7 +17,7 @@
- The <delayer> Element + Configuring Delayer The <delayer> element is used to delay the Message flow between two Message Channels. As with the other endpoints, you can provide the "input-channel" and "output-channel" attributes, diff --git a/docs/src/reference/docbook/resequencer.xml b/docs/src/reference/docbook/resequencer.xml index cd3a6572a0..227a0feab4 100644 --- a/docs/src/reference/docbook/resequencer.xml +++ b/docs/src/reference/docbook/resequencer.xml @@ -25,7 +25,7 @@
- Configuring a Resequencer with XML + Configuring a Resequencer Configuring a resequencer requires only including the appropriate element in XML. diff --git a/docs/src/reference/docbook/service-activator.xml b/docs/src/reference/docbook/service-activator.xml index a01fb587ca..b8aabd9f4e 100644 --- a/docs/src/reference/docbook/service-activator.xml +++ b/docs/src/reference/docbook/service-activator.xml @@ -16,7 +16,7 @@
- The <service-activator/> Element + Configuring Service Activator To create a Service Activator, use the 'service-activator' element with the 'input-channel' and 'ref' attributes: <service-activator input-channel="exampleChannel" ref="exampleHandler"/> diff --git a/docs/src/reference/docbook/transformer.xml b/docs/src/reference/docbook/transformer.xml index 839458b3ff..844ea85ce9 100644 --- a/docs/src/reference/docbook/transformer.xml +++ b/docs/src/reference/docbook/transformer.xml @@ -26,9 +26,13 @@
- -
- Namespace support for Transformer - <transformer> Element + +
+ Configuring Transformer + + +
+ Configuring Transformer with XML The <transformer> element is used to create a Message-transforming endpoint. In addition to "input-channel" and "output-channel" attributes, it requires a "ref". The "ref" may either point to an Object that contains the @@ -178,7 +182,7 @@ public class Kid{
- Annotation support for Transformer - @Transformer + Configuring Transformer with Annotations The @Transformer annotation can also be added to methods that expect either the Message type or the message payload type. The return value will be handled in the @@ -196,6 +200,10 @@ Order generateOrder(String productId, @Header("customerName") String customer) { }
+ +
+ +
Header Filter