1 16 17 package test.wsdl.interop3.groupE; 18 19 23 public class InteropTestRpcEncImpl implements InteropTestRpcEnc { 24 25 public InteropTestRpcEncImpl() throws java.rmi.RemoteException { 26 } 27 28 public String echoString(String param0) throws java.rmi.RemoteException { 29 return param0; 30 } 31 32 public String [] echoStringArray(String [] param0) 33 throws java.rmi.RemoteException { 34 return param0; 35 } 36 37 public SOAPStruct echoStruct(SOAPStruct param0) 38 throws java.rmi.RemoteException { 39 return param0; 40 } 41 42 public void echoVoid() throws java.rmi.RemoteException { 43 } 44 } 45 | Popular Tags |