Author: dkulp
Date: Mon Mar 30 15:46:11 2009
New Revision: 760015

URL: http://svn.apache.org/viewvc?rev=760015&view=rev
Log:
Fixes to work with jdk6

Modified:
    cxf/trunk/testutils/src/main/resources/wsdl/type_test/type_test.xsd

Modified: cxf/trunk/testutils/src/main/resources/wsdl/type_test/type_test.xsd
URL: 
http://svn.apache.org/viewvc/cxf/trunk/testutils/src/main/resources/wsdl/type_test/type_test.xsd?rev=760015&r1=760014&r2=760015&view=diff
==============================================================================
--- cxf/trunk/testutils/src/main/resources/wsdl/type_test/type_test.xsd 
(original)
+++ cxf/trunk/testutils/src/main/resources/wsdl/type_test/type_test.xsd Mon Mar 
30 15:46:11 2009
@@ -489,7 +489,7 @@
     <simpleType name="AnonUnionList">
         <list>
             <simpleType>
-                <union memberTypes="negativeInteger">
+                <union memberTypes="xsd:negativeInteger">
                     <simpleType>
                         <restriction base="positiveInteger"/>
                     </simpleType>
@@ -520,7 +520,7 @@
     <!-- union simple types -->
 
     <simpleType name="SimpleUnion">
-        <union memberTypes="positiveInteger">
+        <union memberTypes="xsd:positiveInteger">
             <simpleType>
                 <restriction base="negativeInteger"/>
             </simpleType>
@@ -528,7 +528,7 @@
     </simpleType>
 
     <simpleType name="UnionWithAnonEnum">
-        <union memberTypes="int">
+        <union memberTypes="xsd:int">
             <simpleType>
                 <restriction base="string">
                     <enumeration value="n/a"/>
@@ -542,18 +542,18 @@
     <!-- XXX - UnionWithStringList, UnionWithStringListRestriction and 
UnionWithAnonList
          rpc-literal and wrapped doc-literal generated code differs. -->
     <simpleType name="UnionWithStringList">
-        <union memberTypes="int x1:StringList"/>
+        <union memberTypes="xsd:int x1:StringList"/>
     </simpleType>
 
     <simpleType name="UnionWithStringListRestriction">
-        <union memberTypes="int">
+        <union memberTypes="xsd:int">
             <simpleType>
                 <restriction base="x1:StringList"/>
             </simpleType>
         </union>
     </simpleType>
     <simpleType name="UnionWithAnonList">
-        <union memberTypes="int">
+        <union memberTypes="xsd:int">
             <simpleType>
                 <list itemType="float"/>
             </simpleType>


Reply via email to