KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > extension > PlanWSSoapImpl


1 /**
2  * PlanWSSoapImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis WSDL2Java emitter.
6  */

7
8 package test.wsdl.extension;
9
10 public class PlanWSSoapImpl implements test.wsdl.extension.PlanWSSoap{
11     public test.wsdl.extension.Plan getPlan() throws java.rmi.RemoteException JavaDoc {
12         test.wsdl.extension.Disposition disposition = new test.wsdl.extension.Disposition();
13         disposition.setCode("CODE #1");
14         disposition.setDescription("CODE #1 Description");
15         test.wsdl.extension.Plan plan = new test.wsdl.extension.Plan();
16         plan.setDisposition(disposition);
17         return plan;
18     }
19
20 }
21
Popular Tags