KickJava   Java API By Example, From Geeks To Geeks.

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


1 /**
2  * InteropTest2PortType.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.SOAPStruct;
11 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPStructStruct;
12 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPArrayStruct;
13 import org.apache.notgeronimo.itests.naming.common.webservice.interop.types.SOAPStructStruct;
14
15 public interface InteropTest2PortType extends java.rmi.Remote JavaDoc {
16     public void echoVoid() throws java.rmi.RemoteException JavaDoc;
17     public java.lang.String JavaDoc echoString(java.lang.String JavaDoc inputString) throws java.rmi.RemoteException JavaDoc;
18     public java.lang.String JavaDoc[] echoStringArray(java.lang.String JavaDoc[] inputStringArray) throws java.rmi.RemoteException JavaDoc;
19     public int echoInteger(int inputInteger) throws java.rmi.RemoteException JavaDoc;
20     public int[] echoIntegerArray(int[] inputIntegerArray) throws java.rmi.RemoteException JavaDoc;
21     public float echoFloat(float inputFloat) throws java.rmi.RemoteException JavaDoc;
22     public float[] echoFloatArray(float[] inputFloatArray) throws java.rmi.RemoteException JavaDoc;
23     public SOAPStruct echoStruct(SOAPStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
24     public SOAPStruct[] echoStructArray(SOAPStruct[] inputStructArray) throws java.rmi.RemoteException JavaDoc;
25     public java.util.Calendar JavaDoc echoDate(java.util.Calendar JavaDoc inputDate) throws java.rmi.RemoteException JavaDoc;
26     public byte[] echoBase64(byte[] inputBase64) throws java.rmi.RemoteException JavaDoc;
27     public boolean echoBoolean(boolean inputBoolean) throws java.rmi.RemoteException JavaDoc;
28     public java.math.BigDecimal JavaDoc echoDecimal(java.math.BigDecimal JavaDoc inputDecimal) throws java.rmi.RemoteException JavaDoc;
29     public byte[] echoHexBinary(byte[] inputHexBinary) throws java.rmi.RemoteException JavaDoc;
30     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;
31     public SOAPStruct echoSimpleTypesAsStruct(java.lang.String JavaDoc inputString, int inputInteger, float inputFloat) throws java.rmi.RemoteException JavaDoc;
32     public java.lang.String JavaDoc[] echo2DStringArray(java.lang.String JavaDoc[] input2DStringArray) throws java.rmi.RemoteException JavaDoc;
33     public SOAPStructStruct echoNestedStruct(SOAPStructStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
34     public SOAPArrayStruct echoNestedArray(SOAPArrayStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
35 }
36
Popular Tags