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 aj...@apache.org on 2005/06/05 15:54:59 UTC

svn commit: r180091 - /webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Code.java /webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Java.java /webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2WS.java

Author: ajith
Date: Sun Jun  5 06:54:59 2005
New Revision: 180091

URL: http://svn.apache.org/viewcvs?rev=180091&view=rev
Log:
Due to popular demand renamed the WSDL2WS to WSDL2Code. Also added a WSDL2Java class that simply redirects to the WSDL2Code.

Added:
    webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Code.java
      - copied, changed from r180088, webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2WS.java
    webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Java.java
Removed:
    webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2WS.java

Copied: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Code.java (from r180088, webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2WS.java)
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Code.java?p2=webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Code.java&p1=webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2WS.java&r1=180088&r2=180091&rev=180091&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2WS.java (original)
+++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Code.java Sun Jun  5 06:54:59 2005
@@ -19,7 +19,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-public class WSDL2WS {
+public class WSDL2Code {
 	
 	
 	public static void main(String[] args) throws Exception{
@@ -30,7 +30,7 @@
 	}
 	
 	private static void printUsage(){
-		System.out.println("Usage WSDL2WS -uri <Location of WSDL> :WSDL file location ");
+		System.out.println("Usage WSDL2Code -uri <Location of WSDL> :WSDL file location ");
 		System.out.println("-o <output Location> : output file location ");
 		System.out.println("-x : Switch to advanced mode. Default is off");
 		System.out.println("-a : Generate async style code only. Default if off");

Added: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Java.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Java.java?rev=180091&view=auto
==============================================================================
--- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Java.java (added)
+++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis/wsdl/WSDL2Java.java Sun Jun  5 06:54:59 2005
@@ -0,0 +1,24 @@
+package org.apache.axis.wsdl;
+
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * 
+ */
+public class WSDL2Java {
+    public static void main(String[] args) throws Exception{
+        WSDL2Code.main(args);
+    }
+}