1 package org.kuali.ole.patron.bo;
2
3 import org.apache.commons.collections.CollectionUtils;
4 import org.kuali.ole.loan.bo.OleLoanDocument;
5 import org.kuali.ole.patron.api.OlePatronContract;
6 import org.kuali.ole.patron.api.OlePatronDefinition;
7 import org.kuali.ole.patron.api.OlePatronNotesDefinition;
8 import org.kuali.rice.kim.api.KimConstants;
9 import org.kuali.rice.kim.api.identity.address.EntityAddress;
10 import org.kuali.rice.kim.api.identity.email.EntityEmail;
11 import org.kuali.rice.kim.api.identity.phone.EntityPhone;
12 import org.kuali.rice.kim.impl.identity.address.EntityAddressBo;
13 import org.kuali.rice.kim.impl.identity.email.EntityEmailBo;
14 import org.kuali.rice.kim.impl.identity.entity.EntityBo;
15 import org.kuali.rice.kim.impl.identity.name.EntityNameBo;
16 import org.kuali.rice.kim.impl.identity.phone.EntityPhoneBo;
17 import org.kuali.rice.kim.impl.identity.type.EntityTypeContactInfoBo;
18 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
19
20 import java.util.*;
21
22
23
24
25 public class OlePatronDocument extends PersistableBusinessObjectBase implements OlePatronContract {
26
27 private String olePatronId;
28 private String barcode;
29 private String borrowerType;
30 private boolean activeIndicator;
31 private boolean generalBlock;
32 private boolean pagingPrivilege;
33 private boolean courtesyNotice;
34 private boolean deliveryPrivilege;
35 private Date expirationDate;
36 private String firstName;
37 private String middleName;
38 private String lastName;
39 private String emailAddress;
40 private String phoneNumber;
41 private String borrowerTypeName;
42 private String processMessage;
43
44 private List<OleLoanDocument> oleLoanDocuments = new ArrayList<OleLoanDocument>();
45 private List<EntityPhoneBo> phones = new ArrayList<EntityPhoneBo>();
46 private List<EntityAddressBo> addresses = new ArrayList<EntityAddressBo>();
47 private EntityNameBo name = new EntityNameBo();
48 private List<EntityEmailBo> emails = new ArrayList<EntityEmailBo>();
49 private List<OlePatronNotes> notes = new ArrayList<OlePatronNotes>();
50 private OleBorrowerType oleBorrowerType;
51 private EntityBo entity = new EntityBo();
52
53
54
55
56
57
58 public static OlePatronDefinition to(OlePatronDocument bo) {
59 if (bo == null) {
60 return null;
61 }
62 return OlePatronDefinition.Builder.create(bo).build();
63 }
64
65
66
67
68
69
70 public static OlePatronDocument from(OlePatronDefinition immutable) {
71 return fromAndUpdate(immutable, null);
72 }
73
74
75
76
77
78
79
80 static OlePatronDocument fromAndUpdate(OlePatronDefinition immutable, OlePatronDocument toUpdate) {
81 if (immutable == null) {
82 return null;
83 }
84 OlePatronDocument bo = toUpdate;
85 if (toUpdate == null) {
86 bo = new OlePatronDocument();
87 }
88
89 bo.olePatronId = immutable.getOlePatronId();
90
91 bo.name = new EntityNameBo();
92
93 if (immutable.getName() != null) {
94 bo.name = EntityNameBo.from(immutable.getName());
95 }
96
97 bo.barcode = immutable.getBarcode();
98 bo.borrowerType = immutable.getBorrowerType();
99 bo.courtesyNotice = immutable.isCourtesyNotice();
100 bo.generalBlock = immutable.isGeneralBlock();
101 bo.deliveryPrivilege = immutable.isDeliveryPrivilege();
102 bo.pagingPrivilege = immutable.isPagingPrivilege();
103 bo.expirationDate = immutable.getExpirationDate();
104 bo.activeIndicator = immutable.isActiveIndicator();
105 if (immutable.getEntity() != null) {
106 bo.entity = EntityBo.from(immutable.getEntity());
107 }
108 if (CollectionUtils.isNotEmpty(immutable.getAddresses())) {
109 for (EntityAddress entityAddr : immutable.getAddresses()) {
110 bo.addresses.add(EntityAddressBo.from(entityAddr));
111 }
112 }
113 if (CollectionUtils.isNotEmpty(immutable.getEmails())) {
114 for (EntityEmail entityEmail : immutable.getEmails()) {
115 bo.emails.add(EntityEmailBo.from(entityEmail));
116 }
117 }
118 if (CollectionUtils.isNotEmpty(immutable.getPhones())) {
119 for (EntityPhone entityPhone : immutable.getPhones()) {
120 bo.phones.add(EntityPhoneBo.from(entityPhone));
121 }
122 }
123
124 if (CollectionUtils.isNotEmpty(immutable.getNotes())) {
125 for (OlePatronNotesDefinition note : immutable.getNotes()) {
126 bo.notes.add(OlePatronNotes.from(note));
127 }
128 }
129 bo.versionNumber = immutable.getVersionNumber();
130
131 EntityBo entityBo = new EntityBo();
132 entityBo.setActive(true);
133
134 if (null != bo.getEntity()) {
135 entityBo = bo.getEntity();
136 entityBo.setActive(true);
137 }
138 entityBo.setNames(Arrays.asList(bo.getName()));
139 EntityTypeContactInfoBo entityTypeContactInfoBo = new EntityTypeContactInfoBo();
140 if(null != bo.getEntity().getEntityTypeContactInfos() && bo.getEntity().getEntityTypeContactInfos().size() > 0){
141 entityTypeContactInfoBo = bo.getEntity().getEntityTypeContactInfos().get(0);
142 }
143 entityTypeContactInfoBo.setAddresses(bo.getAddresses());
144 entityTypeContactInfoBo.setEmailAddresses(bo.getEmails());
145 entityTypeContactInfoBo.setPhoneNumbers(bo.getPhones());
146 entityTypeContactInfoBo.setEntityTypeCode(KimConstants.EntityTypes.PERSON);
147 entityBo.setEntityTypeContactInfos(Arrays.asList(entityTypeContactInfoBo));
148 bo.setEntity(entityBo);
149 return bo;
150 }
151
152
153
154
155
156 public List<OleLoanDocument> getOleLoanDocuments() {
157 return oleLoanDocuments;
158 }
159
160
161
162
163 public void setOleLoanDocuments(List<OleLoanDocument> oleLoanDocuments) {
164 this.oleLoanDocuments = oleLoanDocuments;
165 }
166
167
168
169
170 public String getBorrowerTypeName() {
171 return oleBorrowerType.getBorrowerTypeName();
172 }
173
174
175
176
177 public EntityBo getEntity() {
178 return entity;
179 }
180
181
182
183
184 public void setEntity(EntityBo entity) {
185 this.entity = entity;
186 }
187
188
189
190
191 public List<OlePatronNotes> getNotes() {
192 return notes;
193 }
194
195
196
197
198 public void setNotes(List<OlePatronNotes> notes) {
199 this.notes = notes;
200 }
201
202
203
204
205 public String getBarcode() {
206 return barcode;
207 }
208
209
210
211
212 public void setBarcode(String barcode) {
213 this.barcode = barcode;
214 }
215
216
217
218
219 public String getBorrowerType() {
220 return borrowerType;
221 }
222
223
224
225
226 public void setBorrowerType(String borrowerType) {
227 this.borrowerType = borrowerType;
228 }
229
230
231
232
233 public boolean isActiveIndicator() {
234 return activeIndicator;
235 }
236
237
238
239
240 public void setActiveIndicator(boolean activeIndicator) {
241 this.activeIndicator = activeIndicator;
242 }
243
244
245
246
247 public String getOlePatronId() {
248 return olePatronId;
249 }
250
251
252
253
254 public void setOlePatronId(String olePatronId) {
255 this.olePatronId = olePatronId;
256 }
257
258
259
260
261 public boolean isGeneralBlock() {
262 return generalBlock;
263 }
264
265
266
267
268 public void setGeneralBlock(boolean generalBlock) {
269 this.generalBlock = generalBlock;
270 }
271
272
273
274
275 public boolean isCourtesyNotice() {
276 return courtesyNotice;
277 }
278
279
280
281
282 public void setCourtesyNotice(boolean courtesyNotice) {
283 this.courtesyNotice = courtesyNotice;
284 }
285
286
287
288
289 public boolean isDeliveryPrivilege() {
290 return deliveryPrivilege;
291 }
292
293
294
295
296 public void setDeliveryPrivilege(boolean deliveryPrivilege) {
297 this.deliveryPrivilege = deliveryPrivilege;
298 }
299
300
301
302
303 public boolean isPagingPrivilege() {
304 return pagingPrivilege;
305 }
306
307
308
309
310 public void setPagingPrivilege(boolean pagingPrivilege) {
311 this.pagingPrivilege = pagingPrivilege;
312 }
313
314
315
316
317 public Date getExpirationDate() {
318 return expirationDate;
319 }
320
321
322
323
324 public void setExpirationDate(Date expirationDate) {
325 this.expirationDate = expirationDate;
326 }
327
328
329
330
331 public String getFirstName() {
332 return firstName;
333 }
334
335
336
337
338 public void setFirstName(String firstName) {
339 this.firstName = firstName;
340 }
341
342
343
344
345 public String getMiddleName() {
346 return middleName;
347 }
348
349
350
351
352 public void setMiddleName(String middleName) {
353 this.middleName = middleName;
354 }
355
356
357
358
359 public String getLastName() {
360 return lastName;
361 }
362
363
364
365
366 public void setLastName(String lastName) {
367 this.lastName = lastName;
368 }
369
370
371
372
373 public String getEmailAddress() {
374 return emailAddress;
375 }
376
377
378
379
380 public void setEmailAddress(String emailAddress) {
381 this.emailAddress = emailAddress;
382 }
383
384
385
386
387 public String getPhoneNumber() {
388 return phoneNumber;
389 }
390
391
392
393
394 public void setPhoneNumber(String phoneNumber) {
395 this.phoneNumber = phoneNumber;
396 }
397
398
399
400
401 public List<EntityPhoneBo> getPhones() {
402 return phones;
403 }
404
405
406
407
408 public void setPhones(List<EntityPhoneBo> phones) {
409 this.phones = phones;
410 }
411
412
413
414
415 public List<EntityAddressBo> getAddresses() {
416 return addresses;
417 }
418
419
420
421
422 public void setAddresses(List<EntityAddressBo> addresses) {
423 this.addresses = addresses;
424 }
425
426
427
428
429 public EntityNameBo getName() {
430 return name;
431 }
432
433
434
435
436 public void setName(EntityNameBo name) {
437 this.name = name;
438 }
439
440
441
442
443 public List<EntityEmailBo> getEmails() {
444 return emails;
445 }
446
447
448
449
450 public void setEmails(List<EntityEmailBo> emails) {
451 this.emails = emails;
452 }
453
454
455
456
457 public OleBorrowerType getOleBorrowerType() {
458 return oleBorrowerType;
459 }
460
461
462
463
464 public void setOleBorrowerType(OleBorrowerType oleBorrowerType) {
465 this.oleBorrowerType = oleBorrowerType;
466 }
467
468
469
470
471 public String getProcessMessage() {
472 return processMessage;
473 }
474
475
476
477
478 public void setProcessMessage(String processMessage) {
479 this.processMessage = processMessage;
480 }
481
482 protected LinkedHashMap toStringMapper() {
483 LinkedHashMap toStringMap = new LinkedHashMap();
484 toStringMap.put("olePatronId", olePatronId);
485 return toStringMap;
486 }
487
488
489
490
491 @Override
492 public String getId() {
493 return this.getOlePatronId();
494 }
495
496 }