KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > geronimo > axis > builder > interop > InteropTestPortType


1 /**
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 /**
18  * InteropTestPortType.java
19  *
20  * This file was auto-generated from WSDL
21  * by the Apache Axis WSDL2Java emitter.
22  */

23
24 package org.apache.geronimo.axis.builder.interop;
25
26 public interface InteropTestPortType extends java.rmi.Remote JavaDoc {
27     public void echoVoid() throws java.rmi.RemoteException JavaDoc;
28     public java.lang.String JavaDoc echoString(java.lang.String JavaDoc inputString) throws java.rmi.RemoteException JavaDoc;
29     public java.lang.String JavaDoc[] echoStringArray(java.lang.String JavaDoc[] inputStringArray) throws java.rmi.RemoteException JavaDoc;
30     public int echoInteger(int inputInteger) throws java.rmi.RemoteException JavaDoc;
31     public int[] echoIntegerArray(int[] inputIntegerArray) throws java.rmi.RemoteException JavaDoc;
32     public float echoFloat(float inputFloat) throws java.rmi.RemoteException JavaDoc;
33     public float[] echoFloatArray(float[] inputFloatArray) throws java.rmi.RemoteException JavaDoc;
34     public org.apache.geronimo.axis.builder.interop.types.SOAPStruct echoStruct(org.apache.geronimo.axis.builder.interop.types.SOAPStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
35     public org.apache.geronimo.axis.builder.interop.types.SOAPStruct[] echoStructArray(org.apache.geronimo.axis.builder.interop.types.SOAPStruct[] inputStructArray) throws java.rmi.RemoteException JavaDoc;
36     public java.util.Calendar JavaDoc echoDate(java.util.Calendar JavaDoc inputDate) throws java.rmi.RemoteException JavaDoc;
37     public byte[] echoBase64(byte[] inputBase64) throws java.rmi.RemoteException JavaDoc;
38     public boolean echoBoolean(boolean inputBoolean) throws java.rmi.RemoteException JavaDoc;
39     public java.math.BigDecimal JavaDoc echoDecimal(java.math.BigDecimal JavaDoc inputDecimal) throws java.rmi.RemoteException JavaDoc;
40     public byte[] echoHexBinary(byte[] inputHexBinary) throws java.rmi.RemoteException JavaDoc;
41     public void echoStructAsSimpleTypes(org.apache.geronimo.axis.builder.interop.types.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;
42     public org.apache.geronimo.axis.builder.interop.types.SOAPStruct echoSimpleTypesAsStruct(java.lang.String JavaDoc inputString, int inputInteger, float inputFloat) throws java.rmi.RemoteException JavaDoc;
43     public java.lang.String JavaDoc[] echo2DStringArray(java.lang.String JavaDoc[] input2DStringArray) throws java.rmi.RemoteException JavaDoc;
44     public org.apache.geronimo.axis.builder.interop.types.SOAPStructStruct echoNestedStruct(org.apache.geronimo.axis.builder.interop.types.SOAPStructStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
45     public org.apache.geronimo.axis.builder.interop.types.SOAPArrayStruct echoNestedArray(org.apache.geronimo.axis.builder.interop.types.SOAPArrayStruct inputStruct) throws java.rmi.RemoteException JavaDoc;
46 }
47
Popular Tags