KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > schema2 > Schema2ServiceSoapBindingImpl


1 /**
2  * Schema2ServiceSoapBindingImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2RC2 Jan 14, 2005 (05:38:50 EST) WSDL2Java emitter.
6  */

7
8 package test.wsdl.schema2;
9
10 public class Schema2ServiceSoapBindingImpl implements test.wsdl.schema2.Schema2Test{
11     public java.lang.String JavaDoc echoLanguageTypeTest(java.lang.String JavaDoc languageElem) throws java.rmi.RemoteException JavaDoc {
12         return languageElem;
13     }
14
15     public java.lang.String JavaDoc echoTokenTypeTest(java.lang.String JavaDoc tokenElem) throws java.rmi.RemoteException JavaDoc {
16         return tokenElem;
17     }
18
19     public java.lang.String JavaDoc echoNameTypeTest(java.lang.String JavaDoc nameElem) throws java.rmi.RemoteException JavaDoc {
20         return nameElem;
21     }
22
23     public java.lang.String JavaDoc echoNCNameTypeTest(java.lang.String JavaDoc NCNameElem) throws java.rmi.RemoteException JavaDoc {
24         return NCNameElem;
25     }
26
27     public java.lang.String JavaDoc echoIDTypeTest(java.lang.String JavaDoc IDElem) throws java.rmi.RemoteException JavaDoc {
28         return IDElem;
29     }
30
31     public int echoUnsignedShortTest(int unsignedShort) throws java.rmi.RemoteException JavaDoc {
32         return unsignedShort;
33     }
34
35     public long echoUnsignedIntTest(long unsignedInt) throws java.rmi.RemoteException JavaDoc {
36         return unsignedInt;
37     }
38
39     public short echoUnsignedByteTest(short unsignedByte) throws java.rmi.RemoteException JavaDoc {
40         return unsignedByte;
41     }
42
43     public java.math.BigInteger JavaDoc echoUnsignedLongTest(java.math.BigInteger JavaDoc unsignedLong) throws java.rmi.RemoteException JavaDoc {
44         return unsignedLong;
45     }
46
47     public java.math.BigInteger JavaDoc echoNonPositiveIntegerTest(java.math.BigInteger JavaDoc nonPositiveInteger) throws java.rmi.RemoteException JavaDoc {
48         return nonPositiveInteger;
49     }
50
51     public java.math.BigInteger JavaDoc echoNonNegativeIntegerTest(java.math.BigInteger JavaDoc nonNegativeInteger) throws java.rmi.RemoteException JavaDoc {
52         return nonNegativeInteger;
53     }
54
55     public java.math.BigInteger JavaDoc echoPositiveIntegerTest(java.math.BigInteger JavaDoc positiveInteger) throws java.rmi.RemoteException JavaDoc {
56         return positiveInteger;
57     }
58
59     public java.math.BigInteger JavaDoc echoNegativeIntegerTest(java.math.BigInteger JavaDoc negativeInteger) throws java.rmi.RemoteException JavaDoc {
60         return negativeInteger;
61     }
62
63     public java.util.Calendar JavaDoc echoTimeTest(java.util.Calendar JavaDoc time) throws java.rmi.RemoteException JavaDoc {
64         return time;
65     }
66
67     public java.util.Calendar JavaDoc echoDateTest(java.util.Calendar JavaDoc date) throws java.rmi.RemoteException JavaDoc {
68         return date;
69     }
70
71     public test.wsdl.schema2.Document echoDocument(test.wsdl.schema2.Document document) throws java.rmi.RemoteException JavaDoc {
72         return document;
73     }
74 }
75
Popular Tags