1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.core.api.department;
17
18 import java.io.Serializable;
19 import java.util.Collection;
20 import javax.xml.bind.annotation.XmlAccessType;
21 import javax.xml.bind.annotation.XmlAccessorType;
22 import javax.xml.bind.annotation.XmlAnyElement;
23 import javax.xml.bind.annotation.XmlElement;
24 import javax.xml.bind.annotation.XmlRootElement;
25 import javax.xml.bind.annotation.XmlType;
26 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
27
28 import org.apache.commons.lang.StringUtils;
29 import org.joda.time.DateTime;
30 import org.joda.time.LocalDate;
31 import org.kuali.kpme.core.api.KPMEConstants;
32 import org.kuali.kpme.core.api.groupkey.HrGroupKey;
33 import org.kuali.rice.core.api.CoreConstants;
34 import org.kuali.rice.core.api.mo.AbstractDataTransferObject;
35 import org.kuali.rice.core.api.mo.ModelBuilder;
36 import org.kuali.rice.core.api.util.jaxb.DateTimeAdapter;
37 import org.kuali.rice.core.api.util.jaxb.LocalDateAdapter;
38 import org.w3c.dom.Element;
39
40 @XmlRootElement(name = Department.Constants.ROOT_ELEMENT_NAME)
41 @XmlAccessorType(XmlAccessType.NONE)
42 @XmlType(name = Department.Constants.TYPE_NAME, propOrder = {
43 Department.Elements.HR_DEPT_ID,
44 Department.Elements.DEPT,
45 Department.Elements.DESCRIPTION,
46 Department.Elements.CHART,
47 Department.Elements.ORG,
48 Department.Elements.PAYROLL_APPROVAL,
49 CoreConstants.CommonElements.VERSION_NUMBER,
50 CoreConstants.CommonElements.OBJECT_ID,
51 Department.Elements.ACTIVE,
52 Department.Elements.ID,
53 Department.Elements.CREATE_TIME,
54 Department.Elements.EFFECTIVE_LOCAL_DATE,
55 Department.Elements.USER_PRINCIPAL_ID,
56 CoreConstants.CommonElements.FUTURE_ELEMENTS,
57 KPMEConstants.CommonElements.GROUP_KEY_CODE,
58 KPMEConstants.CommonElements.GROUP_KEY,
59 })
60 public final class Department
61 extends AbstractDataTransferObject
62 implements DepartmentContract
63 {
64 @XmlElement(name = Elements.HR_DEPT_ID, required = false)
65 private final String hrDeptId;
66 @XmlElement(name = Elements.DEPT, required = true)
67 private final String dept;
68 @XmlElement(name = Elements.DESCRIPTION, required = false)
69 private final String description;
70 @XmlElement(name = Elements.CHART, required = false)
71 private final String chart;
72 @XmlElement(name = Elements.ORG, required = false)
73 private final String org;
74 @XmlElement(name = Elements.PAYROLL_APPROVAL, required = false)
75 private final boolean payrollApproval;
76 @XmlElement(name = CoreConstants.CommonElements.VERSION_NUMBER, required = false)
77 private final Long versionNumber;
78 @XmlElement(name = CoreConstants.CommonElements.OBJECT_ID, required = false)
79 private final String objectId;
80 @XmlElement(name = Elements.ACTIVE, required = false)
81 private final boolean active;
82 @XmlElement(name = Elements.ID, required = false)
83 private final String id;
84 @XmlElement(name = Elements.CREATE_TIME, required = false)
85 @XmlJavaTypeAdapter(DateTimeAdapter.class)
86 private final DateTime createTime;
87 @XmlElement(name = Elements.EFFECTIVE_LOCAL_DATE, required = false)
88 @XmlJavaTypeAdapter(LocalDateAdapter.class)
89 private final LocalDate effectiveLocalDate;
90 @XmlElement(name = Elements.USER_PRINCIPAL_ID, required = false)
91 private final String userPrincipalId;
92 @SuppressWarnings("unused")
93 @XmlAnyElement
94 private final Collection<Element> _futureElements = null;
95 @XmlElement(name = KPMEConstants.CommonElements.GROUP_KEY_CODE, required = true)
96 private final String groupKeyCode;
97 @XmlElement(name = KPMEConstants.CommonElements.GROUP_KEY, required = false)
98 private final HrGroupKey groupKey;
99
100
101
102
103
104 private Department() {
105 this.hrDeptId = null;
106 this.dept = null;
107 this.groupKeyCode = null;
108 this.groupKey = null;
109 this.description = null;
110 this.chart = null;
111 this.org = null;
112 this.payrollApproval = false;
113 this.versionNumber = null;
114 this.objectId = null;
115 this.active = false;
116 this.id = null;
117 this.createTime = null;
118 this.effectiveLocalDate = null;
119 this.userPrincipalId = null;
120 }
121
122 private Department(Builder builder) {
123 this.hrDeptId = builder.getHrDeptId();
124 this.dept = builder.getDept();
125 this.groupKeyCode = builder.getGroupKeyCode();
126 this.groupKey = builder.getGroupKey() == null ? null : builder.getGroupKey().build();
127 this.description = builder.getDescription();
128 this.chart = builder.getChart();
129 this.org = builder.getOrg();
130 this.payrollApproval = builder.isPayrollApproval();
131 this.versionNumber = builder.getVersionNumber();
132 this.objectId = builder.getObjectId();
133 this.active = builder.isActive();
134 this.id = builder.getId();
135 this.createTime = builder.getCreateTime();
136 this.effectiveLocalDate = builder.getEffectiveLocalDate();
137 this.userPrincipalId = builder.getUserPrincipalId();
138 }
139
140 @Override
141 public String getHrDeptId() {
142 return this.hrDeptId;
143 }
144
145 @Override
146 public String getDept() {
147 return this.dept;
148 }
149
150 @Override
151 public String getGroupKeyCode() {
152 return this.groupKeyCode;
153 }
154
155 @Override
156 public HrGroupKey getGroupKey() {
157 return this.groupKey;
158 }
159
160 @Override
161 public String getDescription() {
162 return this.description;
163 }
164
165 @Override
166 public String getChart() {
167 return this.chart;
168 }
169
170 @Override
171 public String getOrg() {
172 return this.org;
173 }
174
175 @Override
176 public boolean isPayrollApproval() {
177 return this.payrollApproval;
178 }
179
180 @Override
181 public Long getVersionNumber() {
182 return this.versionNumber;
183 }
184
185 @Override
186 public String getObjectId() {
187 return this.objectId;
188 }
189
190 @Override
191 public boolean isActive() {
192 return this.active;
193 }
194
195 @Override
196 public String getId() {
197 return this.id;
198 }
199
200 @Override
201 public DateTime getCreateTime() {
202 return this.createTime;
203 }
204
205 @Override
206 public LocalDate getEffectiveLocalDate() {
207 return this.effectiveLocalDate;
208 }
209
210 @Override
211 public String getUserPrincipalId() {
212 return this.userPrincipalId;
213 }
214
215 public String getBusinessKeyString() {
216 return getGroupKeyCode() + "|" + getDept();
217 }
218
219 public String getDeptFromBusinessKeyId(String id) {
220 String[] temp = id.split("|");
221 if (temp.length > 1) {
222 return temp[1];
223 }
224 return null;
225 }
226
227 public String getGroupKeycodeFromBusinessKeyId(String id) {
228 String[] temp = id.split("|");
229 if (temp.length > 1) {
230 return temp[0];
231 }
232 return null;
233 }
234
235
236
237
238
239
240 public final static class Builder
241 implements Serializable, DepartmentContract, ModelBuilder
242 {
243 private static final long serialVersionUID = 6912794461939876346L;
244 private String hrDeptId;
245 private String dept;
246 private String groupKeyCode;
247 private HrGroupKey.Builder groupKey;
248 private String description;
249 private String chart;
250 private String org;
251 private boolean payrollApproval;
252 private Long versionNumber;
253 private String objectId;
254 private boolean active;
255 private String id;
256 private DateTime createTime;
257 private LocalDate effectiveLocalDate;
258 private String userPrincipalId;
259
260 private Builder(String groupKeyCode, String dept) {
261 setGroupKeyCode(groupKeyCode);
262 setDept(dept);
263 }
264
265 public static Builder create(String groupKeyCode, String dept) {
266 return new Builder(groupKeyCode, dept);
267 }
268
269 public static Builder create(DepartmentContract contract) {
270 if (contract == null) {
271 throw new IllegalArgumentException("contract was null");
272 }
273 Builder builder = create(contract.getGroupKeyCode(), contract.getDept());
274 builder.setGroupKey(contract.getGroupKey() == null ? null : HrGroupKey.Builder.create(contract.getGroupKey()));
275 builder.setHrDeptId(contract.getHrDeptId());
276 builder.setDescription(contract.getDescription());
277 builder.setChart(contract.getChart());
278 builder.setOrg(contract.getOrg());
279 builder.setPayrollApproval(contract.isPayrollApproval());
280 builder.setVersionNumber(contract.getVersionNumber());
281 builder.setObjectId(contract.getObjectId());
282 builder.setActive(contract.isActive());
283 builder.setId(contract.getId());
284 builder.setCreateTime(contract.getCreateTime());
285 builder.setEffectiveLocalDate(contract.getEffectiveLocalDate());
286 builder.setUserPrincipalId(contract.getUserPrincipalId());
287 return builder;
288 }
289
290 public Department build() {
291 return new Department(this);
292 }
293
294 @Override
295 public String getHrDeptId() {
296 return this.hrDeptId;
297 }
298
299 @Override
300 public String getDept() {
301 return this.dept;
302 }
303
304 @Override
305 public String getGroupKeyCode() {
306 return this.groupKeyCode;
307 }
308
309 @Override
310 public HrGroupKey.Builder getGroupKey() {
311 return this.groupKey;
312 }
313
314 @Override
315 public String getDescription() {
316 return this.description;
317 }
318
319 @Override
320 public String getChart() {
321 return this.chart;
322 }
323
324 @Override
325 public String getOrg() {
326 return this.org;
327 }
328
329 @Override
330 public boolean isPayrollApproval() {
331 return this.payrollApproval;
332 }
333
334 @Override
335 public Long getVersionNumber() {
336 return this.versionNumber;
337 }
338
339 @Override
340 public String getObjectId() {
341 return this.objectId;
342 }
343
344 @Override
345 public boolean isActive() {
346 return this.active;
347 }
348
349 @Override
350 public String getId() {
351 return this.id;
352 }
353
354 @Override
355 public DateTime getCreateTime() {
356 return this.createTime;
357 }
358
359 @Override
360 public LocalDate getEffectiveLocalDate() {
361 return this.effectiveLocalDate;
362 }
363
364 @Override
365 public String getUserPrincipalId() {
366 return this.userPrincipalId;
367 }
368
369 public void setHrDeptId(String hrDeptId) {
370 this.hrDeptId = hrDeptId;
371 }
372
373 public void setDept(String dept) {
374 if (StringUtils.isWhitespace(dept)) {
375 throw new IllegalArgumentException("dept is blank");
376 }
377 this.dept = dept;
378 }
379
380 public void setGroupKeyCode(String groupKeyCode) {
381 this.groupKeyCode = groupKeyCode;
382 }
383
384 public void setGroupKey(HrGroupKey.Builder groupKey) {
385 this.groupKey = groupKey;
386 }
387
388 public void setDescription(String description) {
389 this.description = description;
390 }
391
392 public void setChart(String chart) {
393 this.chart = chart;
394 }
395
396 public void setOrg(String org) {
397 this.org = org;
398 }
399
400 public void setPayrollApproval(boolean payrollApproval) {
401 this.payrollApproval = payrollApproval;
402 }
403
404 public void setVersionNumber(Long versionNumber) {
405 this.versionNumber = versionNumber;
406 }
407
408 public void setObjectId(String objectId) {
409 this.objectId = objectId;
410 }
411
412 public void setActive(boolean active) {
413 this.active = active;
414 }
415
416 public void setId(String id) {
417 this.id = id;
418 }
419
420 public void setCreateTime(DateTime createTime) {
421 this.createTime = createTime;
422 }
423
424 public void setEffectiveLocalDate(LocalDate effectiveLocalDate) {
425 this.effectiveLocalDate = effectiveLocalDate;
426 }
427
428 public void setUserPrincipalId(String userPrincipalId) {
429 this.userPrincipalId = userPrincipalId;
430 }
431
432 }
433
434
435
436
437
438
439 static class Constants {
440
441 final static String ROOT_ELEMENT_NAME = "department";
442 final static String TYPE_NAME = "DepartmentType";
443
444 }
445
446
447
448
449
450
451 static class Elements {
452
453 final static String HR_DEPT_ID = "hrDeptId";
454 final static String DEPT = "dept";
455 final static String DESCRIPTION = "description";
456 final static String CHART = "chart";
457 final static String ORG = "org";
458 final static String PAYROLL_APPROVAL = "payrollApproval";
459 final static String ACTIVE = "active";
460 final static String ID = "id";
461 final static String CREATE_TIME = "createTime";
462 final static String EFFECTIVE_LOCAL_DATE = "effectiveLocalDate";
463 final static String USER_PRINCIPAL_ID = "userPrincipalId";
464
465 }
466
467 }