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

@@ -1,5 +1,5 @@
/* /*
* Copyright 2016-2017 the original author or authors. * Copyright 2016-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@ public abstract class Transformers {
} }
public static ObjectToMapTransformer toMap(JsonObjectMapper<?, ?> jsonObjectMapper, boolean shouldFlattenKeys) { public static ObjectToMapTransformer toMap(JsonObjectMapper<?, ?> jsonObjectMapper, boolean shouldFlattenKeys) {
ObjectToMapTransformer transformer = new ObjectToMapTransformer(); ObjectToMapTransformer transformer = new ObjectToMapTransformer(jsonObjectMapper);
transformer.setShouldFlattenKeys(shouldFlattenKeys); transformer.setShouldFlattenKeys(shouldFlattenKeys);
return transformer; return transformer;
} }

View File

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

View File

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