You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by mi...@apache.org on 2007/04/18 14:19:25 UTC

svn commit: r529994 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java

Author: milinda
Date: Wed Apr 18 05:19:24 2007
New Revision: 529994

URL: http://svn.apache.org/viewvc?view=rev&rev=529994
Log:
fix minor bugs caused by using axis2_date_time_t inside type information

Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java?view=diff&rev=529994&r1=529993&r2=529994
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java Wed Apr 18 05:19:24 2007
@@ -57,22 +57,22 @@
 
         //Qname maps to  jax rpc QName class
         CTypeInfo.addTypemapping(XSD_QNAME,
-                                 "axis2_qname_t*");
+                                 "axutil_qname_t*");
 
         //xsd Date is mapped to the java.util.date!
         CTypeInfo.addTypemapping(XSD_DATE,
-                                 "axis2_date_time_t*");
+                                 "axutil_date_time_t*");
 
         // Mapping for xsd:time.  Map to Axis type Time
         CTypeInfo.addTypemapping(XSD_TIME,
-                                 "axis2_date_time_t*");
+                                 "axutil_date_time_t*");
         CTypeInfo.addTypemapping(XSD_DATETIME,
-                                 "axis2_date_time_t*");
+                                 "axutil_date_time_t*");
 
         //as for the base 64 encoded binary stuff we map it to a javax.
         // activation.Datahandler object
         CTypeInfo.addTypemapping(XSD_BASE64,
-                                 "axis2_base64_binary_t*");
+                                 "axutil_base64_binary_t*");
 
         CTypeInfo.addTypemapping(XSD_HEXBIN,
                                  "void*");
@@ -169,7 +169,7 @@
 
         // a xsd:anyURI
         CTypeInfo.addTypemapping(XSD_ANYURI,
-                                 "axis2_uri_t*");
+                                 "axutil_uri_t*");
 
 
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org