KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > samples2docclient > ProcessOrderResponse


1 /*
2 * JBoss, the OpenSource J2EE webOS
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */

7 // This class was generated by the JAXRPC SI, do not edit.
8
// Contents subject to change without notice.
9
// JAX-RPC Standard Implementation (1.1.2_01, build R40)
10
// Generated source version: 1.1.2
11

12 package org.jboss.test.webservice.samples2docclient;
13
14
15 public class ProcessOrderResponse
16 {
17    protected org.jboss.test.webservice.samples2docclient.OrderResponse result;
18
19    public ProcessOrderResponse()
20    {
21    }
22
23    public ProcessOrderResponse(org.jboss.test.webservice.samples2docclient.OrderResponse result)
24    {
25       this.result = result;
26    }
27
28    public org.jboss.test.webservice.samples2docclient.OrderResponse getResult()
29    {
30       return result;
31    }
32
33    public void setResult(org.jboss.test.webservice.samples2docclient.OrderResponse result)
34    {
35       this.result = result;
36    }
37 }
38
Popular Tags