Author: dkulp
Date: Thu Jan 14 19:47:38 2010
New Revision: 899376
URL: http://svn.apache.org/viewvc?rev=899376&view=rev
Log:
Merged revisions 899358 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r899358 | dkulp | 2010-01-14 14:00:58 -0500 (Thu, 14 Jan 2010) | 2 lines
[CXF-2605] Make sure form="qualified" is put on the element if the form
should be qualified and the schema is not.
........
Modified:
cxf/branches/2.2.x-fixes/ (props changed)
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java?rev=899376&r1=899375&r2=899376&view=diff
==============================================================================
---
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
(original)
+++
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
Thu Jan 14 19:47:38 2010
@@ -1313,6 +1313,7 @@
mpi.setElementQName(newName);
mpi.setConcreteName(newName);
XmlSchemaUtils.setElementQName(el, newName);
+ el.setForm(new XmlSchemaForm(XmlSchemaForm.QUALIFIED));
}
if (Collection.class.isAssignableFrom(mpi.getTypeClass())