Repository: camel Updated Branches: refs/heads/master eefc37f90 -> ccf5b2823
Polished Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ccf5b282 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ccf5b282 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ccf5b282 Branch: refs/heads/master Commit: ccf5b28231111f9e80724b1e06c1997c2ce6953a Parents: eefc37f Author: Claus Ibsen <davscl...@apache.org> Authored: Fri Jul 17 09:20:31 2015 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Fri Jul 17 09:20:31 2015 +0200 ---------------------------------------------------------------------- .../camel/component/undertow/UndertowComponent.java | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/ccf5b282/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java ---------------------------------------------------------------------- diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java index a458835..8d08000 100644 --- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java +++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java @@ -249,6 +249,17 @@ public class UndertowComponent extends HttpComponent implements RestConsumerFact super.setHttpConnectionManager(httpConnectionManager); } + public UndertowHttpBinding getUndertowHttpBinding() { + return undertowHttpBinding; + } + + /** + * To use a custom HttpBinding to control the mapping between Camel message and HttpClient. + */ + public void setUndertowHttpBinding(UndertowHttpBinding undertowHttpBinding) { + this.undertowHttpBinding = undertowHttpBinding; + } + /** * To use a custom HttpBinding to control the mapping between Camel message and HttpClient. */