1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5
6
7
8 public class OleStatisticalCategoryBo extends PersistableBusinessObjectBase {
9
10 private String oleStatisticalCategoryId;
11 private String oleStatisticalCategoryCode;
12 private String oleStatisticalCategoryName;
13 private String oleStatisticalCategoryDesc;
14 private boolean active;
15
16
17
18
19
20
21 public String getOleStatisticalCategoryId() {
22 return oleStatisticalCategoryId;
23 }
24
25
26
27
28
29
30 public void setOleStatisticalCategoryId(String oleStatisticalCategoryId) {
31 this.oleStatisticalCategoryId = oleStatisticalCategoryId;
32 }
33
34
35
36
37
38
39 public String getOleStatisticalCategoryCode() {
40 return oleStatisticalCategoryCode;
41 }
42
43
44
45
46
47
48 public void setOleStatisticalCategoryCode(String oleStatisticalCategoryCode) {
49 this.oleStatisticalCategoryCode = oleStatisticalCategoryCode;
50 }
51
52
53
54
55
56
57 public String getOleStatisticalCategoryName() {
58 return oleStatisticalCategoryName;
59 }
60
61
62
63
64
65
66 public void setOleStatisticalCategoryName(String oleStatisticalCategoryName) {
67 this.oleStatisticalCategoryName = oleStatisticalCategoryName;
68 }
69
70
71
72
73
74
75 public String getOleStatisticalCategoryDesc() {
76 return oleStatisticalCategoryDesc;
77 }
78
79
80
81
82
83
84 public void setOleStatisticalCategoryDesc(String oleStatisticalCategoryDesc) {
85 this.oleStatisticalCategoryDesc = oleStatisticalCategoryDesc;
86 }
87
88
89
90
91
92
93 public boolean isActive() {
94 return active;
95 }
96
97
98
99
100
101
102 public void setActive(boolean active) {
103 this.active = active;
104 }
105 }