Author: scamp
Date: Tue Apr  5 07:46:54 2005
New Revision: 160177

URL: http://svn.apache.org/viewcvs?view=rev&rev=160177
Log: (empty)


Added:
    incubator/muse/trunk/src/java/org/apache/ws/muws/tool/MuwsWsdl2JavaTask.java
Modified:
    incubator/muse/trunk/src/site/content/interop/build.xml

Added: 
incubator/muse/trunk/src/java/org/apache/ws/muws/tool/MuwsWsdl2JavaTask.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/java/org/apache/ws/muws/tool/MuwsWsdl2JavaTask.java?view=auto&rev=160177
==============================================================================
--- 
incubator/muse/trunk/src/java/org/apache/ws/muws/tool/MuwsWsdl2JavaTask.java 
(added)
+++ 
incubator/muse/trunk/src/java/org/apache/ws/muws/tool/MuwsWsdl2JavaTask.java 
Tue Apr  5 07:46:54 2005
@@ -0,0 +1,59 @@
+/*=============================================================================*
+ *  Copyright 2004 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.
+ 
*=============================================================================*/
+package org.apache.ws.muws.tool;
+
+import org.apache.ws.resource.tool.Wsdl2Java;
+import java.io.File;
+
+/**
+ *
+ * Ant task that wraps [EMAIL PROTECTED] 
org.apache.ws.notification.tool.WsnWsdl2JavaTask}.
+ *
+ * @author Sal Campana
+ */
+public class MuwsWsdl2JavaTask
+{
+   /**
+    * DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    */
+   public String toString(  )
+   {
+      return "WsnWsdl2Java Ant task";
+   }
+
+   /**
+    * DOCUMENT_ME
+    *
+    * @param wsdlFiles DOCUMENT_ME
+    * @param outputDir DOCUMENT_ME
+    * @param classpathFiles DOCUMENT_ME
+    * @param options DOCUMENT_ME
+    *
+    * @return DOCUMENT_ME
+    *
+    * @throws Exception DOCUMENT_ME
+    */
+   protected Wsdl2Java createWsdl2Java( File[]                     wsdlFiles,
+                                        File                       outputDir,
+                                        File[]                     
classpathFiles,
+                                        Wsdl2Java.Wsdl2JavaOptions options )
+   throws Exception
+   {
+      return new MuwsWsdl2Java( wsdlFiles, outputDir, classpathFiles, options 
);
+   }
+}
\ No newline at end of file

Modified: incubator/muse/trunk/src/site/content/interop/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/build.xml?view=diff&r1=160176&r2=160177
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/build.xml (original)
+++ incubator/muse/trunk/src/site/content/interop/build.xml Tue Apr  5 07:46:54 
2005
@@ -44,7 +44,7 @@
         </copy>
         <mkdir dir="${wsdm.webapp.dir}/wsdl" />
                 
-        <taskdef name="wsdl2Java" 
classname="org.apache.ws.resource.tool.Wsdl2JavaTask" 
classpath="${muse.classpath}" />              
+        <taskdef name="wsdl2Java" 
classname="org.apache.ws.muws.tool.MuwsWsdl2JavaTask" 
classpath="${muse.classpath}" />              
         
         <wsdl2Java outputDir="${out.dir}"
                    classpath="${muse.classpath}"



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to