Author: ay
Date: Thu Dec 6 08:38:45 2012
New Revision: 1417769
URL: http://svn.apache.org/viewvc?rev=1417769&view=rev
Log:
[CXF-4683] workqueue configuration in BP does not derive the id attribute from
the name attribute
Modified:
cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/blueprint/CXFCoreNamespaceHandler.java
Modified:
cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/blueprint/CXFCoreNamespaceHandler.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/blueprint/CXFCoreNamespaceHandler.java?rev=1417769&r1=1417768&r2=1417769&view=diff
==============================================================================
---
cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/blueprint/CXFCoreNamespaceHandler.java
(original)
+++
cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/blueprint/CXFCoreNamespaceHandler.java
Thu Dec 6 08:38:45 2012
@@ -68,7 +68,7 @@ public class CXFCoreNamespaceHandler imp
id = "cxf.workqueue.";
id += element.hasAttribute("name") ?
element.getAttribute("name") : "def";
}
- return super.getId(element, context);
+ return id;
}
protected void processNameAttribute(Element element,
ParserContext ctx,