KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > choice > ChoiceServiceSoapImpl


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

30
31 package test.wsdl.choice;
32
33
34
35 public class ChoiceServiceSoapImpl implements test.wsdl.choice.ChoiceServiceSoap {
36
37
38
39     public test.wsdl.choice.Record2 get(test.wsdl.choice.Record1 parameters) throws java.rmi.RemoteException JavaDoc {
40
41         Record2 r = new Record2();
42
43         r.setElem(parameters.getElem());
44
45         return r;
46
47     }
48
49     
50
51 }
52
53
Popular Tags