KickJava   Java API By Example, From Geeks To Geeks.

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


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  * The RoundtripPortType interface defines the methods necessary when
23  * when implementing this interface.
24  *
25  * @version 1.00 06 Feb 2002
26  * @author Brent Ulbricht
27  * @author Rich Scheuerle
28  */

29 // Some of the methods are inherited, to test inherted interface processing
30
public interface RoundtripPortType extends RoundtripPortTypeA, RoundtripPortTypeB {
31
32     public boolean methodBoolean(boolean inBoolean)
33         throws java.rmi.RemoteException JavaDoc;
34     public byte methodByte(byte inByte)
35         throws java.rmi.RemoteException JavaDoc;
36     public short methodShort(short inShort)
37         throws java.rmi.RemoteException JavaDoc;
38     public int methodInt(int inInt)
39         throws java.rmi.RemoteException JavaDoc;
40     public long methodLong(long inLong)
41         throws java.rmi.RemoteException JavaDoc;
42     public float methodFloat(float inFloat)
43         throws java.rmi.RemoteException JavaDoc;
44     public double methodDouble(double inDouble)
45         throws java.rmi.RemoteException JavaDoc;
46 } // RoundtripPortType
47

48
Popular Tags