KickJava   Java API By Example, From Geeks To Geeks.

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


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 GetReportHistoryLimitResponse {
10     protected int historyLimit;
11     protected boolean isSystem;
12     protected int systemLimit;
13     
14     public GetReportHistoryLimitResponse() {
15     }
16     
17     public GetReportHistoryLimitResponse(int historyLimit, boolean isSystem, int systemLimit) {
18         this.historyLimit = historyLimit;
19         this.isSystem = isSystem;
20         this.systemLimit = systemLimit;
21     }
22     
23     public int getHistoryLimit() {
24         return historyLimit;
25     }
26     
27     public void setHistoryLimit(int historyLimit) {
28         this.historyLimit = historyLimit;
29     }
30     
31     public boolean isIsSystem() {
32         return isSystem;
33     }
34     
35     public void setIsSystem(boolean isSystem) {
36         this.isSystem = isSystem;
37     }
38     
39     public int getSystemLimit() {
40         return systemLimit;
41     }
42     
43     public void setSystemLimit(int systemLimit) {
44         this.systemLimit = systemLimit;
45     }
46 }
47
Popular Tags