1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.datadictionary;
17
18 import org.kuali.rice.core.api.util.type.KualiDecimal;
19 import org.kuali.rice.core.api.util.type.KualiPercent;
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21
22 import java.sql.Date;
23 import java.sql.Timestamp;
24
25
26
27
28
29
30 public class AttributeReference extends PersistableBusinessObjectBase {
31 private static final long serialVersionUID = 6582568341825342401L;
32
33 private String oneDigitTextCode;
34 private String twoDigitTextCode;
35 private String genericSystemId;
36 private Date genericDate;
37 private Timestamp genericTimestamp;
38 private boolean genericBoolean;
39 private boolean activeIndicator;
40 private KualiDecimal genericAmount;
41 private String genericBigText;
42 private String emailAddress;
43 private KualiPercent percent;
44 private boolean newCollectionRecord;
45 private String workflowDocumentStatus;
46 private Date createDate;
47 private String initiatorNetworkId;
48 private Date activeFromDate;
49 private Date activeToDate;
50 private Date activeAsOfDate;
51 private boolean current;
52 private String infoTextArea;
53 private String extendedTextArea;
54
55
56
57
58 public AttributeReference() {
59 }
60
61
62
63
64 public Date getCreateDate() {
65 return this.createDate;
66 }
67
68
69
70
71 public void setCreateDate(Date createDate) {
72 this.createDate = createDate;
73 }
74
75
76
77
78 public String getInitiatorNetworkId() {
79 return this.initiatorNetworkId;
80 }
81
82
83
84
85 public void setInitiatorNetworkId(String initiatorNetworkId) {
86 this.initiatorNetworkId = initiatorNetworkId;
87 }
88
89
90
91
92
93
94 public KualiPercent getPercent() {
95 return percent;
96 }
97
98
99
100
101
102
103 public void setPercent(KualiPercent percent) {
104 this.percent = percent;
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
282 public boolean isNewCollectionRecord() {
283 return newCollectionRecord;
284 }
285
286
287
288
289
290
291 public void setNewCollectionRecord(boolean newCollectionRecord) {
292 this.newCollectionRecord = newCollectionRecord;
293 }
294
295
296
297
298 public String getWorkflowDocumentStatus() {
299 return this.workflowDocumentStatus;
300 }
301
302
303
304
305 public void setWorkflowDocumentStatus(String workflowDocumentStatus) {
306 this.workflowDocumentStatus = workflowDocumentStatus;
307 }
308
309 public Date getActiveFromDate() {
310 return this.activeFromDate;
311 }
312
313 public void setActiveFromDate(Date activeFromDate) {
314 this.activeFromDate = activeFromDate;
315 }
316
317 public Date getActiveToDate() {
318 return this.activeToDate;
319 }
320
321 public void setActiveToDate(Date activeToDate) {
322 this.activeToDate = activeToDate;
323 }
324
325 public Date getActiveAsOfDate() {
326 return this.activeAsOfDate;
327 }
328
329 public void setActiveAsOfDate(Date activeAsOfDate) {
330 this.activeAsOfDate = activeAsOfDate;
331 }
332
333 public boolean isCurrent() {
334 return this.current;
335 }
336
337 public void setCurrent(boolean current) {
338 this.current = current;
339 }
340
341
342
343
344
345
346 public String getInfoTextArea() {
347 return infoTextArea;
348 }
349
350
351
352
353
354
355 public void setInfoTextArea(String infoTextArea) {
356 this.infoTextArea = infoTextArea;
357 }
358
359
360
361
362 public final String getExtendedTextArea() {
363 return this.extendedTextArea;
364 }
365
366
367
368
369 public final void setExtendedTextArea(String extendedTextArea) {
370 this.extendedTextArea = extendedTextArea;
371 }
372 }