KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > notgeronimo > itests > naming > common > webservice > interop > InteropTestPortType


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

7
8 package org.apache.notgeronimo.itests.naming.common.webservice.interop;
9
10 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPArrayStruct;
11 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPStructStruct;
12 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPStruct;
13 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPArrayStruct;
14 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPStruct;
15 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPStructStruct;
16
17 public interface InteropTestPortType extends java.rmi.Remote JavaDoc {
18     public void echoVoid() throws java.rmi.RemoteException JavaDoc;
19     public java.lang.String JavaDoc echoString(java.lang.String JavaDoc inputString) throws java.rmi.RemoteException JavaDoc;
20     public java.lang.String JavaDoc[] echoStringArray(java.lang.String JavaDoc[] inputStringArray) throws java.rmi.RemoteException JavaDoc;
21     public int echoInteger(int inputInteger) throws java.rmi.RemoteException JavaDoc;
22     public int[] echoIntegerArray(int[] inputIntegerArray) throws java.rmi.RemoteException JavaDoc;
23     public float echoFloat(float inputFloat) throws java.rmi.RemoteException JavaDoc;
24     public float[] echoFloatArray(float[] inputFloatArray) throws java.rmi.RemoteException JavaDoc;
25     public SOAPStruct echoStruct(SOAPStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
26     public SOAPStruct[] echoStructArray(SOAPStruct[] inputStructArray) throws java.rmi.RemoteException JavaDoc;
27     public java.util.Calendar JavaDoc echoDate(java.util.Calendar JavaDoc inputDate) throws java.rmi.RemoteException JavaDoc;
28     public byte[] echoBase64(byte[] inputBase64) throws java.rmi.RemoteException JavaDoc;
29     public boolean echoBoolean(boolean inputBoolean) throws java.rmi.RemoteException JavaDoc;
30     public java.math.BigDecimal JavaDoc echoDecimal(java.math.BigDecimal JavaDoc inputDecimal) throws java.rmi.RemoteException JavaDoc;
31     public byte[] echoHexBinary(byte[] inputHexBinary) throws java.rmi.RemoteException JavaDoc;
32     public void echoStructAsSimpleTypes(SOAPStruct inputStruct, javax.xml.rpc.holders.StringHolder JavaDoc outputString, javax.xml.rpc.holders.IntHolder JavaDoc outputInteger, javax.xml.rpc.holders.FloatHolder JavaDoc outputFloat) throws java.rmi.RemoteException JavaDoc;
33     public SOAPStruct echoSimpleTypesAsStruct(java.lang.String JavaDoc inputString, int inputInteger, float inputFloat) throws java.rmi.RemoteException JavaDoc;
34     public java.lang.String JavaDoc[] echo2DStringArray(java.lang.String JavaDoc[] input2DStringArray) throws java.rmi.RemoteException JavaDoc;
35     public SOAPStructStruct echoNestedStruct(SOAPStructStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
36     public SOAPArrayStruct echoNestedArray(SOAPArrayStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
37 }
38
Popular Tags