Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 63D2F18FB0 for ; Wed, 16 Dec 2015 15:19:54 +0000 (UTC) Received: (qmail 65157 invoked by uid 500); 16 Dec 2015 15:19:54 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 65107 invoked by uid 500); 16 Dec 2015 15:19:54 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 65096 invoked by uid 99); 16 Dec 2015 15:19:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Dec 2015 15:19:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 04893E00DB; Wed, 16 Dec 2015 15:19:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Wed, 16 Dec 2015 15:19:55 -0000 Message-Id: In-Reply-To: <70cf67577a7441e0a09ff59a8b0c3659@git.apache.org> References: <70cf67577a7441e0a09ff59a8b0c3659@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] camel git commit: camel-cxf needed a setter for setServiceFactorty to support spring namespace parser when setting it from there as reported on user forum. camel-cxf needed a setter for setServiceFactorty to support spring namespace parser when setting it from there as reported on user forum. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/86f1de51 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/86f1de51 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/86f1de51 Branch: refs/heads/camel-2.15.x Commit: 86f1de519927d6e65e27800a8b5860020b6da776 Parents: 6276e2e Author: Claus Ibsen Authored: Wed Dec 16 16:19:06 2015 +0100 Committer: Claus Ibsen Committed: Wed Dec 16 16:19:40 2015 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/camel/component/cxf/CxfEndpoint.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/86f1de51/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java index 8b81383..59681e9 100644 --- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java +++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java @@ -1244,6 +1244,11 @@ public class CxfEndpoint extends DefaultEndpoint implements HeaderFilterStrategy this.serviceFactoryBean = serviceFactoryBean; } + public void setServiceFactory(Object serviceFactoryBean) { + // needed a setter with this name as the cxf namespace parser expects this name + this.serviceFactoryBean = serviceFactoryBean; + } + public CxfEndpointConfigurer getCxfEndpointConfigurer() { return configurer; }