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