View Javadoc

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   OlePatronDocument provides OlePatronDocument information through getter and setter.
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       * This method converts the PersistableBusinessObjectBase OlePatronDocument into immutable object OlePatronDefinition
55       * @param bo
56       * @return OlePatronDefinition
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       * This method converts the immutable object OlePatronDefinition into PersistableBusinessObjectBase OlePatronDocument
67       * @param immutable
68       * @return OlePatronDocument
69       */
70      public static OlePatronDocument from(OlePatronDefinition immutable) {
71          return fromAndUpdate(immutable, null);
72      }
73  
74      /**
75       * This method will set the PersistableBusinessObjectBase OlePatronDocument from immutable object OlePatronDefinition
76       * @param immutable
77       * @param toUpdate
78       * @return bo(OlePatronDocument)
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          // bo.activeIndicator = immutable.isActiveIndicator();
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         //bo.setObjectId(immutable.getObjectId());
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      * Gets the value of oleLoanDocuments which is a list of OleLoanDocument
154      * @return oleLoanDocuments(list of type OleLoanDocument)
155      */
156     public List<OleLoanDocument> getOleLoanDocuments() {
157         return oleLoanDocuments;
158     }
159     /**
160      * Sets the value for oleLoanDocuments which is a list of OleLoanDocument
161      * @param oleLoanDocuments(list of type OleLoanDocument)
162      */
163     public void setOleLoanDocuments(List<OleLoanDocument> oleLoanDocuments) {
164         this.oleLoanDocuments = oleLoanDocuments;
165     }
166     /**
167      * Gets the value of borrowerTypeName property
168      * @return borrowerTypeName
169      */
170     public String getBorrowerTypeName() {
171         return oleBorrowerType.getBorrowerTypeName();
172     }
173     /**
174      * Gets the value of entity of type EntityBo
175      * @return entity(EntityBo)
176      */
177     public EntityBo getEntity() {
178         return entity;
179     }
180     /**
181      * Sets the value for entity of type EntityBo
182      * @param entity(EntityBo)
183      */
184     public void setEntity(EntityBo entity) {
185         this.entity = entity;
186     }
187     /**
188      * Gets the value of notes which is a list of OlePatronNotes
189      * @return notes(list of type OlePatronNotes)
190      */
191     public List<OlePatronNotes> getNotes() {
192         return notes;
193     }
194     /**
195      * Sets the value for notes which is a list of OlePatronNotes
196      * @param notes(list of type OlePatronNotes)
197      */
198     public void setNotes(List<OlePatronNotes> notes) {
199         this.notes = notes;
200     }
201     /**
202      * Gets the value of barcode property
203      * @return barcode
204      */
205     public String getBarcode() {
206         return barcode;
207     }
208     /**
209      * Sets the value for barcode property
210      * @param barcode
211      */
212     public void setBarcode(String barcode) {
213         this.barcode = barcode;
214     }
215     /**
216      * Gets the value of borrowerType property
217      * @return borrowerType
218      */
219     public String getBorrowerType() {
220         return borrowerType;
221     }
222     /**
223      * Sets the value for borrowerType property
224      * @param borrowerType
225      */
226     public void setBorrowerType(String borrowerType) {
227         this.borrowerType = borrowerType;
228     }
229     /**
230      * Gets the boolean value of activeIndicator property
231      * @return activeIndicator
232      */
233     public boolean isActiveIndicator() {
234         return activeIndicator;
235     }
236     /**
237      * Sets the boolean value for activeIndicator property
238      * @param activeIndicator
239      */
240     public void setActiveIndicator(boolean activeIndicator) {
241         this.activeIndicator = activeIndicator;
242     }
243     /**
244      * Gets the value of olePatronId property
245      * @return olePatronId
246      */
247     public String getOlePatronId() {
248         return olePatronId;
249     }
250     /**
251      * Sets the value for olePatronId property
252      * @param olePatronId
253      */
254     public void setOlePatronId(String olePatronId) {
255         this.olePatronId = olePatronId;
256     }
257     /**
258      * Gets the boolean value of generalBlock property
259      * @return generalBlock
260      */
261     public boolean isGeneralBlock() {
262         return generalBlock;
263     }
264     /**
265      * Sets the boolean value for generalBlock property
266      * @param generalBlock
267      */
268     public void setGeneralBlock(boolean generalBlock) {
269         this.generalBlock = generalBlock;
270     }
271     /**
272      * Gets the boolean value of courtesyNotice property
273      * @return courtesyNotice
274      */
275     public boolean isCourtesyNotice() {
276         return courtesyNotice;
277     }
278     /**
279      * Sets the boolean value for courtesyNotice property
280      * @param courtesyNotice
281      */
282     public void setCourtesyNotice(boolean courtesyNotice) {
283         this.courtesyNotice = courtesyNotice;
284     }
285     /**
286      * Gets the boolean value of deliveryPrivilege property
287      * @return deliveryPrivilege
288      */
289     public boolean isDeliveryPrivilege() {
290         return deliveryPrivilege;
291     }
292     /**
293      * Sets the boolean value for deliveryPrivilege property
294      * @param deliveryPrivilege
295      */
296     public void setDeliveryPrivilege(boolean deliveryPrivilege) {
297         this.deliveryPrivilege = deliveryPrivilege;
298     }
299     /**
300      * Gets the boolean value of pagingPrivilege property
301      * @return pagingPrivilege
302      */
303     public boolean isPagingPrivilege() {
304         return pagingPrivilege;
305     }
306     /**
307      * Sets the boolean value for pagingPrivilege property
308      * @param pagingPrivilege
309      */
310     public void setPagingPrivilege(boolean pagingPrivilege) {
311         this.pagingPrivilege = pagingPrivilege;
312     }
313     /**
314      * Gets the value of expirationDate which is of type Date
315      * @return expirationDate(Date)
316      */
317     public Date getExpirationDate() {
318         return expirationDate;
319     }
320     /**
321      * Sets the value for expirationDate which is of type Date
322      * @param expirationDate
323      */
324     public void setExpirationDate(Date expirationDate) {
325         this.expirationDate = expirationDate;
326     }
327     /**
328      * Gets the value of firstName property
329      * @return firstName
330      */
331     public String getFirstName() {
332         return firstName;
333     }
334     /**
335      * Sets the value for firstName property
336      * @param firstName
337      */
338     public void setFirstName(String firstName) {
339         this.firstName = firstName;
340     }
341     /**
342      * Gets the value of middleName property
343      * @return middleName
344      */
345     public String getMiddleName() {
346         return middleName;
347     }
348     /**
349      * Sets the value for middleName property
350      * @param middleName
351      */
352     public void setMiddleName(String middleName) {
353         this.middleName = middleName;
354     }
355     /**
356      * Gets the value of lastName property
357      * @return lastName
358      */
359     public String getLastName() {
360         return lastName;
361     }
362     /**
363      * Sets the value for lastName property
364      * @param lastName
365      */
366     public void setLastName(String lastName) {
367         this.lastName = lastName;
368     }
369     /**
370      * Gets the value of emailAddress property
371      * @return emailAddress
372      */
373     public String getEmailAddress() {
374         return emailAddress;
375     }
376     /**
377      * Sets the value for emailAddress property
378      * @param emailAddress
379      */
380     public void setEmailAddress(String emailAddress) {
381         this.emailAddress = emailAddress;
382     }
383     /**
384      * Gets the value of phoneNumber property
385      * @return phoneNumber
386      */
387     public String getPhoneNumber() {
388         return phoneNumber;
389     }
390     /**
391      * Sets the value for phoneNumber property
392      * @param phoneNumber
393      */
394     public void setPhoneNumber(String phoneNumber) {
395         this.phoneNumber = phoneNumber;
396     }
397     /**
398      * Gets the value of phones which is a list of EntityPhoneBo
399      * @return phones(list of type EntityPhoneBo)
400      */
401     public List<EntityPhoneBo> getPhones() {
402         return phones;
403     }
404     /**
405      * Sets the value for phones which is a list of EntityPhoneBo
406      * @param phones(list of type EntityPhoneBo)
407      */
408     public void setPhones(List<EntityPhoneBo> phones) {
409         this.phones = phones;
410     }
411     /**
412      * Gets the value of addresses which is a list of EntityAddressBo
413      * @return addresses(list of type EntityAddressBo)
414      */
415     public List<EntityAddressBo> getAddresses() {
416         return addresses;
417     }
418     /**
419      * Sets the value for addresses which is a list of EntityAddressBo
420      * @param addresses(list of type EntityAddressBo)
421      */
422     public void setAddresses(List<EntityAddressBo> addresses) {
423         this.addresses = addresses;
424     }
425     /**
426      * Gets the value of name which is of type EntityNameBo
427      * @return name(EntityNameBo)
428      */
429     public EntityNameBo getName() {
430         return name;
431     }
432     /**
433      * Sets the value for name which is of type EntityNameBo
434      * @param name(EntityNameBo)
435      */
436     public void setName(EntityNameBo name) {
437         this.name = name;
438     }
439     /**
440      * Gets the value of emails which is a list of EntityEmailBo
441      * @return emails(list of type EntityEmailBo)
442      */
443     public List<EntityEmailBo> getEmails() {
444         return emails;
445     }
446     /**
447      * Sets the value for emails which is a list of EntityEmailBo
448      * @param emails(list of type EntityEmailBo)
449      */
450     public void setEmails(List<EntityEmailBo> emails) {
451         this.emails = emails;
452     }
453     /**
454      * Gets the value of oleBorrowerType which is of type OleBorrowerType
455      * @return oleBorrowerType(OleBorrowerType)
456      */
457     public OleBorrowerType getOleBorrowerType() {
458         return oleBorrowerType;
459     }
460     /**
461      * Sets the value for oleBorrowerType which is of type OleBorrowerType
462      * @param oleBorrowerType(OleBorrowerType)
463      */
464     public void setOleBorrowerType(OleBorrowerType oleBorrowerType) {
465         this.oleBorrowerType = oleBorrowerType;
466     }
467     /**
468      * Gets the value of processMessage property
469      * @return processMessage
470      */
471     public String getProcessMessage() {
472         return processMessage;
473     }
474     /**
475      * Sets the value for processMessage property
476      * @param processMessage
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      * Gets the value of olePatronId property
489      * @return olePatronId
490      */
491     @Override
492     public String getId() {
493         return this.getOlePatronId();
494     }
495 
496 }