KickJava   Java API By Example, From Geeks To Geeks.

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


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 SetReportHistoryLimit {
10     protected java.lang.String JavaDoc report;
11     protected boolean useSystem;
12     protected int historyLimit;
13     
14     public SetReportHistoryLimit() {
15     }
16     
17     public SetReportHistoryLimit(java.lang.String JavaDoc report, boolean useSystem, int historyLimit) {
18         this.report = report;
19         this.useSystem = useSystem;
20         this.historyLimit = historyLimit;
21     }
22     
23     public java.lang.String JavaDoc getReport() {
24         return report;
25     }
26     
27     public void setReport(java.lang.String JavaDoc report) {
28         this.report = report;
29     }
30     
31     public boolean isUseSystem() {
32         return useSystem;
33     }
34     
35     public void setUseSystem(boolean useSystem) {
36         this.useSystem = useSystem;
37     }
38     
39     public int getHistoryLimit() {
40         return historyLimit;
41     }
42     
43     public void setHistoryLimit(int historyLimit) {
44         this.historyLimit = historyLimit;
45     }
46 }
47
Popular Tags