KickJava   Java API By Example, From Geeks To Geeks.

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


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 import test.wsdl.roundtrip.holders.BondInvestmentHolder;
20
21 import javax.xml.rpc.holders.StringHolder JavaDoc;
22
23 /**
24  * The RoundtripPortTypeB defines methods for RoundtripPortType
25  *
26  * @author Rich Scheuerle
27  */

28 public interface RoundtripPortTypeB {
29
30     public java.lang.Float JavaDoc methodSoapFloat(java.lang.Float JavaDoc inSoapFloat)
31         throws java.rmi.RemoteException JavaDoc;
32     public java.lang.Double JavaDoc methodSoapDouble(java.lang.Double JavaDoc inSoapDouble)
33         throws java.rmi.RemoteException JavaDoc;
34     public java.lang.Boolean JavaDoc methodSoapBoolean(java.lang.Boolean JavaDoc inSoapBoolean)
35         throws java.rmi.RemoteException JavaDoc;
36     public java.lang.Byte JavaDoc methodSoapByte(java.lang.Byte JavaDoc inSoapByte)
37         throws java.rmi.RemoteException JavaDoc;
38     public java.lang.Short JavaDoc methodSoapShort(java.lang.Short JavaDoc inSoapShort)
39         throws java.rmi.RemoteException JavaDoc;
40     public java.lang.Integer JavaDoc methodSoapInt(java.lang.Integer JavaDoc inSoapInt)
41         throws java.rmi.RemoteException JavaDoc;
42     public java.lang.Long JavaDoc methodSoapLong(java.lang.Long JavaDoc inSoapLong)
43         throws java.rmi.RemoteException JavaDoc;
44     public void throwInvalidTickerException()
45         throws InvalidTickerSymbol,
46                java.rmi.RemoteException JavaDoc;
47     public void throwInvalidTradeExchange()
48         throws InvalidCompanyId, InvalidTradeExchange, InvalidTickerSymbol,
49                java.rmi.RemoteException JavaDoc;
50
51     // Overloading test
52
public int getId(BondInvestment investment) throws java.rmi.RemoteException JavaDoc;
53     public int getId(Investment investment) throws java.rmi.RemoteException JavaDoc;
54
55     public void holderTest(StringHolder JavaDoc sh, BondInvestmentHolder bih);
56 } // RoundtripPortType
57

58
Popular Tags