1 package org.kuali.ole.describe.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.sql.Date;
6 import java.util.LinkedHashMap;
7
8
9
10
11 public class OleReceiptStatus extends PersistableBusinessObjectBase {
12
13 private String receiptStatusId;
14 private String receiptStatusCode;
15 private String receiptStatusName;
16 private String source;
17 private Date sourceDate;
18 private boolean active;
19
20
21
22
23
24
25 public String getReceiptStatusId() {
26 return receiptStatusId;
27 }
28
29
30
31
32
33
34 public void setReceiptStatusId(String receiptStatusId) {
35 this.receiptStatusId = receiptStatusId;
36 }
37
38
39
40
41
42
43 public String getReceiptStatusCode() {
44 return receiptStatusCode;
45 }
46
47
48
49
50
51
52 public void setReceiptStatusCode(String receiptStatusCode) {
53 this.receiptStatusCode = receiptStatusCode;
54 }
55
56
57
58
59
60
61 public String getReceiptStatusName() {
62 return receiptStatusName;
63 }
64
65
66
67
68
69
70 public void setReceiptStatusName(String receiptStatusName) {
71 this.receiptStatusName = receiptStatusName;
72 }
73
74
75
76
77
78
79 public String getSource() {
80 return source;
81 }
82
83
84
85
86
87
88 public void setSource(String source) {
89 this.source = source;
90 }
91
92
93
94
95
96
97 public Date getSourceDate() {
98 return sourceDate;
99 }
100
101
102
103
104
105
106 public void setSourceDate(Date sourceDate) {
107 this.sourceDate = sourceDate;
108 }
109
110
111
112
113
114
115 public boolean isActive() {
116 return active;
117 }
118
119
120
121
122
123
124 public void setActive(boolean active) {
125 this.active = active;
126 }
127
128
129
130
131
132
133 protected LinkedHashMap toStringMapper() {
134 LinkedHashMap toStringMap = new LinkedHashMap();
135 toStringMap.put("receiptStatusId", receiptStatusId);
136 toStringMap.put("receiptStatusCode", receiptStatusCode);
137 toStringMap.put("receiptStatusName", receiptStatusName);
138 toStringMap.put("source", source);
139 toStringMap.put("sourceDate", sourceDate);
140 toStringMap.put("active", active);
141 return toStringMap;
142 }
143 }