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 de...@apache.org on 2005/09/16 08:12:03 UTC

svn commit: r289391 - /webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/codegen/CodeGenConfiguration.java

Author: deepal
Date: Thu Sep 15 23:11:56 2005
New Revision: 289391

URL: http://svn.apache.org/viewcvs?rev=289391&view=rev
Log:
changed to set default databinding type (if the value is 0 default data binding will work)

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

Modified: webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/codegen/CodeGenConfiguration.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/codegen/CodeGenConfiguration.java?rev=289391&r1=289390&r2=289391&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/codegen/CodeGenConfiguration.java (original)
+++ webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/codegen/CodeGenConfiguration.java Thu Sep 15 23:11:56 2005
@@ -99,7 +99,8 @@
         }else if(Databinding.JAXB.equalsIgnoreCase(databindingType)){
             this.databindingType = XSLTConstants.DataBindingTypes.JAXB;
         }else{
-            throw new UnsupportedOperationException();
+             this.databindingType = XSLTConstants.DataBindingTypes.NONE;
+//            throw new UnsupportedOperationException();
         }
     }