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 ch...@apache.org on 2005/06/13 15:55:22 UTC

svn commit: r190403 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisDescWSDLComponentFactory.java

Author: chathura
Date: Mon Jun 13 06:55:22 2005
New Revision: 190403

URL: http://svn.apache.org/viewcvs?rev=190403&view=rev
Log:
Commiting chages to the WSDLComponent Factory interface

Modified:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisDescWSDLComponentFactory.java

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisDescWSDLComponentFactory.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisDescWSDLComponentFactory.java?rev=190403&r1=190402&r2=190403&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisDescWSDLComponentFactory.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/description/AxisDescWSDLComponentFactory.java Mon Jun 13 06:55:22 2005
@@ -8,7 +8,7 @@
 import org.apache.wsdl.WSDLDescription;
 import org.apache.wsdl.WSDLEndpoint;
 import org.apache.wsdl.WSDLExtensibilityAttribute;
-import org.apache.wsdl.WSDLFault;
+import org.apache.wsdl.WSDLFaultReference;
 import org.apache.wsdl.WSDLFeature;
 import org.apache.wsdl.WSDLImport;
 import org.apache.wsdl.WSDLInclude;
@@ -26,7 +26,7 @@
 import org.apache.wsdl.impl.WSDLDescriptionImpl;
 import org.apache.wsdl.impl.WSDLEndpointImpl;
 import org.apache.wsdl.impl.WSDLExtensibilityAttributeImpl;
-import org.apache.wsdl.impl.WSDLFaultImpl;
+import org.apache.wsdl.impl.WSDLFaultReferenceImpl;
 import org.apache.wsdl.impl.WSDLFeatureImpl;
 import org.apache.wsdl.impl.WSDLImportImpl;
 import org.apache.wsdl.impl.WSDLIncludeImpl;
@@ -76,11 +76,6 @@
 	}
 
 	
-	public WSDLFault createFault() {
-		return new WSDLFaultImpl();
-	}
-
-	
 	public WSDLFeature createFeature() {
 		return new WSDLFeatureImpl();
 	}
@@ -124,6 +119,10 @@
 	 */
 	public ExtensionFactory createExtensionFactory(){
 		return new ExtensionFactoryImpl();
+	}
+	
+	public WSDLFaultReference createFaultReference(){
+		return new WSDLFaultReferenceImpl();
 	}
 
 }