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