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