You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/08/26 18:51:36 UTC

svn commit: r1517599 - /cxf/branches/2.6.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/blueprint/SimpleBPNamespaceHandler.java

Author: dkulp
Date: Mon Aug 26 16:51:35 2013
New Revision: 1517599

URL: http://svn.apache.org/r1517599
Log:
Merged revisions 1517595 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes

........
  r1517595 | dkulp | 2013-08-26 12:44:04 -0400 (Mon, 26 Aug 2013) | 10 lines

  Merged revisions 1517594 via  git cherry-pick from
  https://svn.apache.org/repos/asf/cxf/trunk

  ........
    r1517594 | dkulp | 2013-08-26 12:32:21 -0400 (Mon, 26 Aug 2013) | 2 lines

    [CXF-5234] Fix problem of simple frontend blueprint proxies not being parsed.

  ........

........

Modified:
    cxf/branches/2.6.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/blueprint/SimpleBPNamespaceHandler.java

Modified: cxf/branches/2.6.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/blueprint/SimpleBPNamespaceHandler.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/blueprint/SimpleBPNamespaceHandler.java?rev=1517599&r1=1517598&r2=1517599&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/blueprint/SimpleBPNamespaceHandler.java (original)
+++ cxf/branches/2.6.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/blueprint/SimpleBPNamespaceHandler.java Mon Aug 26 16:51:35 2013
@@ -50,7 +50,7 @@ public class SimpleBPNamespaceHandler im
         if ("server".equals(s)) {
             return new ServerFactoryBeanDefinitionParser().parse(element, context);
         } else if ("client".equals(s)) {
-            //TODO
+            return new ClientProxyFactoryBeanDefinitionParser().parse(element, context);
         }
         return null;
     }