1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kns.bo;
17
18
19 import java.sql.Date;
20 import java.sql.Timestamp;
21 import java.util.LinkedHashMap;
22
23 import org.kuali.rice.kns.util.KualiDecimal;
24 import org.kuali.rice.kns.util.KualiPercent;
25
26
27
28
29
30 public class AttributeReferenceDummy extends PersistableBusinessObjectBase {
31 private static final long serialVersionUID = 6582568341825342401L;
32 private String oneDigitTextCode;
33 private String twoDigitTextCode;
34 private String genericSystemId;
35 private Date genericDate;
36 private Timestamp genericTimestamp;
37 private boolean genericBoolean;
38 private boolean activeIndicator;
39 private KualiDecimal genericAmount;
40 private String genericBigText;
41 private String emailAddress;
42 private KualiPercent percent;
43 private boolean newCollectionRecord;
44 private String workflowDocumentStatus;
45 private Date createDate;
46 private String initiatorNetworkId;
47 private Date activeFromDate;
48 private Date activeToDate;
49 private Date activeAsOfDate;
50 private boolean current;
51
52
53
54
55
56
57 public AttributeReferenceDummy() {
58 }
59
60
61
62
63 public Date getCreateDate() {
64 return this.createDate;
65 }
66
67
68
69
70 public void setCreateDate(Date createDate) {
71 this.createDate = createDate;
72 }
73
74
75
76
77 public String getInitiatorNetworkId() {
78 return this.initiatorNetworkId;
79 }
80
81
82
83
84 public void setInitiatorNetworkId(String initiatorNetworkId) {
85 this.initiatorNetworkId = initiatorNetworkId;
86 }
87
88
89
90
91
92
93 public KualiPercent getPercent() {
94 return percent;
95 }
96
97
98
99
100
101
102 public void setPercent(KualiPercent percent) {
103 this.percent = percent;
104 }
105
106
107
108
109
110
111
112 public String getGenericSystemId() {
113 return genericSystemId;
114 }
115
116
117
118
119
120
121 public void setGenericSystemId(String genericSystemId) {
122 this.genericSystemId = genericSystemId;
123 }
124
125
126
127
128
129
130 public String getOneDigitTextCode() {
131 return oneDigitTextCode;
132 }
133
134 public Timestamp getGenericTimestamp() {
135 return genericTimestamp;
136 }
137
138 public void setGenericTimestamp(Timestamp genericTimestamp) {
139 this.genericTimestamp = genericTimestamp;
140 }
141
142
143
144
145
146
147 public void setOneDigitTextCode(String oneDigitTextCode) {
148 this.oneDigitTextCode = oneDigitTextCode;
149 }
150
151
152
153
154
155
156 public String getTwoDigitTextCode() {
157 return twoDigitTextCode;
158 }
159
160
161
162
163
164
165 public void setTwoDigitTextCode(String twoDigitTextCode) {
166 this.twoDigitTextCode = twoDigitTextCode;
167 }
168
169
170
171
172
173
174 public Date getGenericDate() {
175 return genericDate;
176 }
177
178
179
180
181
182
183 public void setGenericDate(Date genericDate) {
184 this.genericDate = genericDate;
185 }
186
187
188
189
190
191
192 public boolean isGenericBoolean() {
193 return genericBoolean;
194 }
195
196
197
198
199
200
201 public void setGenericBoolean(boolean genericBoolean) {
202 this.genericBoolean = genericBoolean;
203 }
204
205
206
207
208
209
210 public boolean isActiveIndicator() {
211 return activeIndicator;
212 }
213
214
215
216
217
218
219 public void setActiveIndicator(boolean activeIndicator) {
220 this.activeIndicator = activeIndicator;
221 }
222
223
224
225
226
227
228 public KualiDecimal getGenericAmount() {
229 return genericAmount;
230 }
231
232
233
234
235
236
237 public void setGenericAmount(KualiDecimal genericAmount) {
238 this.genericAmount = genericAmount;
239 }
240
241
242
243
244
245
246 public String getGenericBigText() {
247 return genericBigText;
248 }
249
250
251
252
253
254
255 public void setGenericBigText(String genericBigText) {
256 this.genericBigText = genericBigText;
257 }
258
259
260
261
262
263
264 public String getEmailAddress() {
265 return emailAddress;
266 }
267
268
269
270
271
272
273 public void setEmailAddress(String emailAddress) {
274 this.emailAddress = emailAddress;
275 }
276
277
278
279
280
281 public boolean isNewCollectionRecord() {
282 return newCollectionRecord;
283 }
284
285
286
287
288
289 public void setNewCollectionRecord(boolean newCollectionRecord) {
290 this.newCollectionRecord = newCollectionRecord;
291 }
292
293
294
295
296 public String getWorkflowDocumentStatus() {
297 return this.workflowDocumentStatus;
298 }
299
300
301
302
303 public void setWorkflowDocumentStatus(String workflowDocumentStatus) {
304 this.workflowDocumentStatus = workflowDocumentStatus;
305 }
306
307 public Date getActiveFromDate() {
308 return this.activeFromDate;
309 }
310
311 public void setActiveFromDate(Date activeFromDate) {
312 this.activeFromDate = activeFromDate;
313 }
314
315 public Date getActiveToDate() {
316 return this.activeToDate;
317 }
318
319 public void setActiveToDate(Date activeToDate) {
320 this.activeToDate = activeToDate;
321 }
322
323 public Date getActiveAsOfDate() {
324 return this.activeAsOfDate;
325 }
326
327 public void setActiveAsOfDate(Date activeAsOfDate) {
328 this.activeAsOfDate = activeAsOfDate;
329 }
330
331 public boolean isCurrent() {
332 return this.current;
333 }
334
335 public void setCurrent(boolean current) {
336 this.current = current;
337 }
338
339
340
341
342 protected LinkedHashMap toStringMapper() {
343 LinkedHashMap m = new LinkedHashMap();
344
345 m.put("hashCode", Integer.toHexString(hashCode()));
346
347 return m;
348 }
349 }