Fix Transformers usage in Docs

**Cherry-pick to 5.0.x**
This commit is contained in:
Artem Bilan
2018-03-27 12:23:05 -04:00
parent 1cd6c11808
commit 8afdcb4893
3 changed files with 5 additions and 5 deletions

View File

@@ -409,7 +409,7 @@ public class FileReadingJavaApplication {
.from(s -> s.file(new File(INBOUND_PATH))
.patternFilter("*.txt"),
e -> e.poller(Pollers.fixedDelay(1000)))
.transform(Transformers.fileToString())
.transform(Files.toStringTransformer())
.channel("processFileChannel")
.get();
}

View File

@@ -98,7 +98,7 @@ This maps the following headers:
- `mail_lineCount` - A line count (if available).
- `mail_receivedDate` - The received date (if available).
- `mail_size` - The mail size (if available).
- `mail_expunged` - A boolen indicating if the message is expunged.
- `mail_expunged` - A boolean indicating if the message is expunged.
- `mail_raw` - A `MultiValueMap` containing all the mail headers and their values.
- `mail_contentType` - The content type of the original mail message.
- `contentType` - The payload content type (see below).
@@ -146,7 +146,7 @@ and with the Java DSL:
[source, java]
----
...
.transform(Transformers.fromMail())
.transform(Mail.toStringTransformer())
...
----