KickJava   Java API By Example, From Geeks To Geeks.

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


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 CreateLinkedReport {
10     protected java.lang.String JavaDoc report;
11     protected java.lang.String JavaDoc parent;
12     protected java.lang.String JavaDoc link;
13     protected org.jboss.test.webservice.jbws718.ArrayOfProperty properties;
14     
15     public CreateLinkedReport() {
16     }
17     
18     public CreateLinkedReport(java.lang.String JavaDoc report, java.lang.String JavaDoc parent, java.lang.String JavaDoc link, org.jboss.test.webservice.jbws718.ArrayOfProperty properties) {
19         this.report = report;
20         this.parent = parent;
21         this.link = link;
22         this.properties = properties;
23     }
24     
25     public java.lang.String JavaDoc getReport() {
26         return report;
27     }
28     
29     public void setReport(java.lang.String JavaDoc report) {
30         this.report = report;
31     }
32     
33     public java.lang.String JavaDoc getParent() {
34         return parent;
35     }
36     
37     public void setParent(java.lang.String JavaDoc parent) {
38         this.parent = parent;
39     }
40     
41     public java.lang.String JavaDoc getLink() {
42         return link;
43     }
44     
45     public void setLink(java.lang.String JavaDoc link) {
46         this.link = link;
47     }
48     
49     public org.jboss.test.webservice.jbws718.ArrayOfProperty getProperties() {
50         return properties;
51     }
52     
53     public void setProperties(org.jboss.test.webservice.jbws718.ArrayOfProperty properties) {
54         this.properties = properties;
55     }
56 }
57
Popular Tags