gdaniels 02/02/28 10:02:40 Modified: java/test/wsdl/interop3/compound2 SoapInteropCompound2BindingImpl.java Log: Use correct employee class Revision Changes Path 1.2 +2 -1 xml-axis/java/test/wsdl/interop3/compound2/SoapInteropCompound2BindingImpl.java Index: SoapInteropCompound2BindingImpl.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/compound2/SoapInteropCompound2BindingImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- SoapInteropCompound2BindingImpl.java 28 Feb 2002 15:26:27 -0000 1.1 +++ SoapInteropCompound2BindingImpl.java 28 Feb 2002 18:02:39 -0000 1.2 @@ -6,9 +6,10 @@ */ package test.wsdl.interop3.compound2; +package test.wsdl.interop3.compound2.xsd; public class SoapInteropCompound2BindingImpl implements test.wsdl.interop3.compound2.SoapInteropCompound2Binding { - public org.soapinterop.Employee echoEmployee(org.soapinterop.Employee xEmployee) throws java.rmi.RemoteException { + public test.wsdl.interop3.compound2.xsd.Employee echoEmployee(test.wsdl.interop3.compound2.xsd.Employee xEmployee) throws java.rmi.RemoteException { return xEmployee; }