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