KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > soap12 > additional > Soap12AddTestRpcBindingImpl


1 /**
2  * Soap12AddTestRpcBindingImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis WSDL2Java emitter.
6  */

7
8 package test.wsdl.soap12.additional;
9
10 public class Soap12AddTestRpcBindingImpl implements test.wsdl.soap12.additional.Soap12AddTestPortTypeRpc{
11     public void echoVoid() throws java.rmi.RemoteException JavaDoc {
12     }
13
14     public test.wsdl.soap12.additional.xsd.SOAPStruct echoSimpleTypesAsStruct(java.lang.String JavaDoc inputString, int inputInteger, float inputFloat) throws java.rmi.RemoteException JavaDoc {
15         return null;
16     }
17
18     // getTime is a notification style operation and is unsupported.
19

20     public java.lang.String JavaDoc echoString(java.lang.String JavaDoc inputString) throws java.rmi.RemoteException JavaDoc {
21         return inputString;
22     }
23
24     public test.wsdl.soap12.additional.xsd.SOAPStructTypes echoSimpleTypesAsStructOfSchemaTypes(java.lang.Object JavaDoc input1, java.lang.Object JavaDoc input2, java.lang.Object JavaDoc input3, java.lang.Object JavaDoc input4) throws java.rmi.RemoteException JavaDoc {
25         return null;
26     }
27
28     public int echoInteger(int inputInteger) throws java.rmi.RemoteException JavaDoc {
29         return -3;
30     }
31
32 }
33
Popular Tags