KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws718 > PrepareQueryResponse


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.3, build R1)
4
// Generated source version: 1.1.3
5

6 package org.jboss.test.webservice.jbws718;
7
8
9 public class PrepareQueryResponse {
10     protected org.jboss.test.webservice.jbws718.DataSetDefinition dataSettings;
11     protected boolean changed;
12     
13     public PrepareQueryResponse() {
14     }
15     
16     public PrepareQueryResponse(org.jboss.test.webservice.jbws718.DataSetDefinition dataSettings, boolean changed) {
17         this.dataSettings = dataSettings;
18         this.changed = changed;
19     }
20     
21     public org.jboss.test.webservice.jbws718.DataSetDefinition getDataSettings() {
22         return dataSettings;
23     }
24     
25     public void setDataSettings(org.jboss.test.webservice.jbws718.DataSetDefinition dataSettings) {
26         this.dataSettings = dataSettings;
27     }
28     
29     public boolean isChanged() {
30         return changed;
31     }
32     
33     public void setChanged(boolean changed) {
34         this.changed = changed;
35     }
36 }
37
Popular Tags