KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > roundtrip > RoundtripPortTypeA


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

16
17 package test.wsdl.roundtrip;
18
19
20
21 /**
22  * Defines methods for RoundtripPortType
23  *
24  * @author Rich Scheuerle
25  */

26 public interface RoundtripPortTypeA {
27     public java.lang.String JavaDoc methodString(java.lang.String JavaDoc inString)
28         throws java.rmi.RemoteException JavaDoc;
29     public java.math.BigInteger JavaDoc methodBigInteger(java.math.BigInteger JavaDoc inInteger)
30         throws java.rmi.RemoteException JavaDoc;
31     public java.math.BigDecimal JavaDoc methodBigDecimal(java.math.BigDecimal JavaDoc inDecimal)
32         throws java.rmi.RemoteException JavaDoc;
33     public java.util.Calendar JavaDoc methodDateTime(java.util.Calendar JavaDoc inDateTime)
34         throws java.rmi.RemoteException JavaDoc;
35     public java.util.Date JavaDoc methodDate(java.util.Date JavaDoc inDateTime)
36         throws java.rmi.RemoteException JavaDoc;
37     public byte[] methodByteArray(byte[] inByteArray)
38         throws java.rmi.RemoteException JavaDoc;
39     public void methodAllTypesIn(java.lang.String JavaDoc string,
40                                  java.math.BigInteger JavaDoc integer,
41                                  java.math.BigDecimal JavaDoc decimal,
42                                  java.util.Calendar JavaDoc dateTime,
43                                  java.util.Date JavaDoc date,
44                                  boolean _boolean,
45                                  byte _byte,
46                                  short _short,
47                                  int _int,
48                                  long _long,
49                                  float _float,
50                                  double _double,
51                                  byte[] base64Binary,
52                                  java.lang.Boolean JavaDoc soapBoolean,
53                                  java.lang.Byte JavaDoc soapByte,
54                                  java.lang.Short JavaDoc soapShort,
55                                  java.lang.Integer JavaDoc soapInt,
56                                  java.lang.Long JavaDoc soapLong,
57                                  java.lang.Float JavaDoc soapFloat,
58                                  java.lang.Double JavaDoc soapDouble,
59                                  java.lang.Byte JavaDoc[] soapBase64)
60         throws java.rmi.RemoteException JavaDoc;
61     public int[] methodIntArrayInOut(int[] inIntArray)
62         throws java.rmi.RemoteException JavaDoc;
63     public void methodIntArrayIn(int[] inIntArray)
64         throws java.rmi.RemoteException JavaDoc;
65     public int[] methodIntArrayOut()
66         throws java.rmi.RemoteException JavaDoc;
67     public String JavaDoc[][] methodStringMArrayInOut(String JavaDoc[][] inStringArray)
68         throws java.rmi.RemoteException JavaDoc;
69     public void methodStringMArrayIn(String JavaDoc[][] inStringArray)
70         throws java.rmi.RemoteException JavaDoc;
71     public String JavaDoc[][] methodStringMArrayOut()
72         throws java.rmi.RemoteException JavaDoc;
73     public void methodBondInvestmentIn(BondInvestment bondInvestment)
74         throws java.rmi.RemoteException JavaDoc;
75     public BondInvestment methodBondInvestmentOut()
76         throws java.rmi.RemoteException JavaDoc;
77     public BondInvestment methodBondInvestmentInOut(BondInvestment bondInvestment)
78         throws java.rmi.RemoteException JavaDoc;
79     public float getRealtimeLastTradePrice(StockInvestment stockInvestment)
80         throws java.rmi.RemoteException JavaDoc;
81     public PreferredStockInvestment getDividends(PreferredStockInvestment preferredStock)
82         throws java.rmi.RemoteException JavaDoc;
83     public CallOptions[] methodCallOptions(CallOptions[] callOptions)
84         throws java.rmi.RemoteException JavaDoc;
85 } // RoundtripPortType
86

87
Popular Tags