You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/05/09 18:07:24 UTC

svn commit: r1336262 - /cxf/branches/2.5.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/Option.java

Author: dkulp
Date: Wed May  9 16:07:24 2012
New Revision: 1336262

URL: http://svn.apache.org/viewvc?rev=1336262&view=rev
Log:
Merged revisions 1335110 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1335110 | dkulp | 2012-05-07 12:39:47 -0400 (Mon, 07 May 2012) | 2 lines

  Remove some printlns I left in

........

Modified:
    cxf/branches/2.5.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/Option.java

Modified: cxf/branches/2.5.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/Option.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/Option.java?rev=1336262&r1=1336261&r2=1336262&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/Option.java (original)
+++ cxf/branches/2.5.x-fixes/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/Option.java Wed May  9 16:07:24 2012
@@ -344,9 +344,12 @@ public class Option {
         return validateWsdl == null ? false : validateWsdl;
     }
 
-    public void setValidateWsdl(boolean validateWsdl) {
+    public void setValidateWsdl(String validateWsdl) {
         this.validateWsdl = validateWsdl;
     }
+    public void setValidate(String v) {
+        this.validateWsdl = v;
+    }
     
     public boolean isNoTypes() {
         return noTypes == null ? false : noTypes;