]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/contact/JobsContactWebSessionBean.java
garr, again localContact was returned empty because of confusion ... :-( Please cherr...
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / contact / JobsContactWebSessionBean.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jjobs.beans.contact;
18
19 import de.chotime.landingpage.beans.login.LandingUserLoginWebSessionController;
20 import java.text.MessageFormat;
21 import java.util.Collections;
22 import java.util.Date;
23 import java.util.Iterator;
24 import java.util.List;
25 import java.util.Objects;
26 import javax.annotation.PostConstruct;
27 import javax.enterprise.context.SessionScoped;
28 import javax.enterprise.event.Observes;
29 import javax.faces.view.facelets.FaceletException;
30 import javax.inject.Inject;
31 import javax.inject.Named;
32 import javax.naming.Context;
33 import javax.naming.InitialContext;
34 import javax.naming.NamingException;
35 import org.mxchange.jcontacts.contact.Contact;
36 import org.mxchange.jcontacts.contact.ContactSessionBeanRemote;
37 import org.mxchange.jcontacts.contact.UserContact;
38 import org.mxchange.jcontacts.contact.gender.Gender;
39 import org.mxchange.jcontacts.contact.utils.ContactUtils;
40 import org.mxchange.jcontacts.events.contact.add.AdminAddedContactEvent;
41 import org.mxchange.jcontacts.events.contact.update.AdminUpdatedContactEvent;
42 import org.mxchange.jcontacts.exceptions.ContactNotFoundException;
43 import org.mxchange.jcountry.data.Country;
44 import org.mxchange.jjobs.beans.login.JobsUserLoginWebSessionController;
45 import org.mxchange.jphone.phonenumbers.cellphone.CellphoneNumber;
46 import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
47 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
48 import org.mxchange.jphone.phonenumbers.fax.FaxNumber;
49 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
50 import org.mxchange.jphone.phonenumbers.landline.LandLineNumber;
51 import org.mxchange.jphone.phonenumbers.mobileprovider.MobileProvider;
52 import org.mxchange.jusercore.events.login.UserLoggedInEvent;
53 import org.mxchange.jusercore.events.registration.UserRegisteredEvent;
54 import org.mxchange.jusercore.events.user.add.AdminAddedUserEvent;
55 import org.mxchange.jusercore.exceptions.UserPasswordMismatchException;
56
57 /**
58  * A general contact bean (controller)
59  * <p>
60  * @author Roland Haeder<roland@mxchange.org>
61  */
62 @Named ("contactController")
63 @SessionScoped
64 public class JobsContactWebSessionBean implements JobsContactWebSessionController {
65
66         /**
67          * Serial number
68          */
69         private static final long serialVersionUID = 542_145_347_916L;
70
71         /**
72          * Birth day
73          */
74         private Date birthday;
75
76         /**
77          * Cellphone number's carrier
78          */
79         private MobileProvider cellphoneCarrier;
80
81         /**
82          * Cellphone number
83          */
84         private Long cellphoneNumber;
85
86         /**
87          * City
88          */
89         private String city;
90
91         /**
92          * Optional comments
93          */
94         private String comment;
95
96         /**
97          * Remote contact bean
98          */
99         private final ContactSessionBeanRemote contactBean;
100
101         /**
102          * Contact list
103          */
104         private List<Contact> contactList;
105
106         /**
107          * Country instance
108          */
109         private Country country;
110
111         /**
112          * Email address
113          */
114         private String emailAddress;
115
116         /**
117          * Email address list
118          */
119         private List<String> emailAddressList;
120
121         /**
122          * Email address repeated
123          */
124         private String emailAddressRepeat;
125
126         /**
127          * Family name
128          */
129         private String familyName;
130
131         /**
132          * Fax number's area code
133          */
134         private Integer faxAreaCode;
135
136         /**
137          * Country instance for fax number
138          */
139         private Country faxCountry;
140
141         /**
142          * Fax number
143          */
144         private Long faxNumber;
145
146         /**
147          * First name
148          */
149         private String firstName;
150
151         /**
152          * Gender instance
153          */
154         private Gender gender;
155
156         /**
157          * House number
158          */
159         private Short houseNumber;
160
161         /**
162          * Whether a cellphone entry has been unlinked
163          */
164         private boolean isCellphoneUnlinked;
165
166         /**
167          * Whether a fax entry has been unlinked
168          */
169         private boolean isFaxUnlinked;
170
171         /**
172          * Whether a land-line number has been unlinked
173          */
174         private boolean isLandLineUnlinked;
175
176         /**
177          * Phone number area code
178          */
179         private Integer phoneAreaCode;
180
181         /**
182          * Country instance for phone number
183          */
184         private Country phoneCountry;
185
186         /**
187          * Phone number
188          */
189         private Long phoneNumber;
190
191         /**
192          * Street
193          */
194         private String street;
195
196         /**
197          * Login bean (controller)
198          */
199         @Inject
200         private JobsUserLoginWebSessionController userLoginController;
201
202         /**
203          * ZIP code
204          */
205         private Integer zipCode;
206
207         /**
208          * Default constructor
209          */
210         public JobsContactWebSessionBean () {
211                 // Try it
212                 try {
213                         // Get initial context
214                         Context context = new InitialContext();
215
216                         // Try to lookup
217                         this.contactBean = (ContactSessionBeanRemote) context.lookup("java:global/jratecalc-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
218                 } catch (final NamingException e) {
219                         // Throw again
220                         throw new FaceletException(e);
221                 }
222         }
223
224         @Override
225         public void afterAdminAddedContact (@Observes final AdminAddedContactEvent event) {
226                 // The event must be valid
227                 if (null == event) {
228                         // Throw NPE
229                         throw new NullPointerException("event is null"); //NOI18N
230                 } else if (event.getAddedContact() == null) {
231                         // Throw again ...
232                         throw new NullPointerException("event.addedContact is null"); //NOI18N
233                 } else if (event.getAddedContact().getContactId() == null) {
234                         // ... and again
235                         throw new NullPointerException("event.addedContact.customerId is null"); //NOI18N
236                 } else if (event.getAddedContact().getContactId() < 1) {
237                         // Not valid
238                         throw new IllegalArgumentException(MessageFormat.format("event.addedContact.customerId={0} is not valid", event.getAddedContact().getContactId())); //NOI18N //NOI18N
239                 }
240
241                 // Clear this bean
242                 this.clear();
243
244                 // Call other method
245                 this.contactList.add(event.getAddedContact());
246         }
247
248         @Override
249         public void afterAdminAddedUserEvent (@Observes final AdminAddedUserEvent event) {
250                 // Trace message
251                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("UserWebBean:afterAdminAddedUserEvent: event={0} - CALLED!", event)); //NOI18N
252
253                 // event should not be null
254                 if (null == event) {
255                         // Throw NPE
256                         throw new NullPointerException("event is null"); //NOI18N
257                 } else if (event.getAddedUser() == null) {
258                         // Throw NPE again
259                         throw new NullPointerException("event.addedUser is null"); //NOI18N
260                 } else if (event.getAddedUser().getUserId() == null) {
261                         // userId is null
262                         throw new NullPointerException("event.addedUser.userId is null"); //NOI18N
263                 } else if (event.getAddedUser().getUserId() < 1) {
264                         // Not avalid id
265                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getAddedUser(), event.getAddedUser().getUserId())); //NOI18N
266                 }
267
268                 // Clear all data
269                 this.clear();
270
271                 // Trace message
272                 //* NOISY-DEBUG: */ System.out.println("UserWebBean:afterAdminAddedUserEvent: EXIT!"); //NOI18N
273         }
274
275         @Override
276         public void afterAdminUpdatedContactDataEvent (@Observes final AdminUpdatedContactEvent event) {
277                 // Trace message
278                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterAdminUpdatedContactDataEvent: event={0} - CALLED!", event)); //NOI18N
279
280                 // event should not be null
281                 if (null == event) {
282                         // Throw NPE
283                         throw new NullPointerException("event is null"); //NOI18N
284                 } else if (event.getUpdatedContact() == null) {
285                         // Throw NPE again
286                         throw new NullPointerException("event.updatedUser is null"); //NOI18N
287                 } else if (event.getUpdatedContact().getContactId() == null) {
288                         // userId is null
289                         throw new NullPointerException("event.updatedUser.userId is null"); //NOI18N
290                 } else if (event.getUpdatedContact().getContactId() < 1) {
291                         // Not avalid id
292                         throw new IllegalArgumentException(MessageFormat.format("contactId of contact={0} is not valid: {1}", event.getUpdatedContact(), event.getUpdatedContact().getContactId())); //NOI18N
293                 }
294
295                 // Get iterator from list
296                 Iterator<Contact> iterator = this.contactList.iterator();
297
298                 // "Walk" through all entries
299                 while (iterator.hasNext()) {
300                         // Get next element
301                         Contact next = iterator.next();
302
303                         // Is id number the same?
304                         if (Objects.equals(event.getUpdatedContact().getContactId(), next.getContactId())) {
305                                 // Found entry, so remove it and abort
306                                 this.contactList.remove(next);
307
308                                 // Remove also email from list
309                                 this.emailAddressList.remove(next.getContactEmailAddress());
310                                 break;
311                         }
312                 }
313
314                 // Add contact to list
315                 this.contactList.add(event.getUpdatedContact());
316
317                 // Add email address to list
318                 this.emailAddressList.add(event.getUpdatedContact().getContactEmailAddress());
319         }
320
321         @Override
322         public void afterRegistrationEvent (@Observes final UserRegisteredEvent event) {
323                 // Trace message
324                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterRegistration: event={0} - CALLED!", event)); //NOI18N
325
326                 // event should not be null
327                 if (null == event) {
328                         // Throw NPE
329                         throw new NullPointerException("event is null"); //NOI18N
330                 } else if (event.getRegisteredUser() == null) {
331                         // Throw NPE again
332                         throw new NullPointerException("event.user is null"); //NOI18N
333                 } else if (event.getRegisteredUser().getUserId() == null) {
334                         // userId is null
335                         throw new NullPointerException("event.user.userId is null"); //NOI18N
336                 } else if (event.getRegisteredUser().getUserId() < 1) {
337                         // Not avalid id
338                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getRegisteredUser(), event.getRegisteredUser().getUserId())); //NOI18N
339                 }
340
341                 // Get user instance
342                 Contact registeredContact = event.getRegisteredUser().getUserContact();
343
344                 // Debug message
345                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterRegistration: registeredContact={0}", registeredContact)); //NOI18N
346                 // Copy all data from registered->user
347                 this.copyContact(registeredContact);
348
349                 // Add user name and email address
350                 this.addUserNameEmailAddress(registeredContact);
351
352                 // Clear all data
353                 this.clear();
354
355                 // Trace message
356                 //* NOISY-DEBUG: */ System.out.println("ContactWebBean:afterRegistration: EXIT!"); //NOI18N
357         }
358
359         @Override
360         public void afterUserLogin (@Observes final UserLoggedInEvent event) {
361                 // Trace message
362                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterUserLogin: event={0} - CALLED!", event)); //NOI18N
363
364                 // event should not be null
365                 if (null == event) {
366                         // Throw NPE
367                         throw new NullPointerException("event is null"); //NOI18N
368                 } else if (event.getLoggedInUser() == null) {
369                         // Throw NPE again
370                         throw new NullPointerException("event.user is null"); //NOI18N
371                 } else if (event.getLoggedInUser().getUserId() == null) {
372                         // userId is null
373                         throw new NullPointerException("event.user.userId is null"); //NOI18N
374                 } else if (event.getLoggedInUser().getUserId() < 1) {
375                         // Not avalid id
376                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getLoggedInUser(), event.getLoggedInUser().getUserId())); //NOI18N
377                 }
378
379                 // Copy all data to this bean
380                 this.copyContact(event.getLoggedInUser().getUserContact());
381
382                 // Trace message
383                 //* NOISY-DEBUG: */ System.out.println("ContactWebBean:afterUserLogin - EXIT!"); //NOI18N
384         }
385
386         @Override
387         public List<Contact> allContacts () {
388                 // Debug message
389                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactController.allContacts: contactList.size()={0} - EXIT!", this.contactList.size()));
390
391                 // Return un-modified list
392                 return Collections.unmodifiableList(this.contactList);
393         }
394
395         @Override
396         public Contact createContactInstance () {
397                 // User message
398                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("{0}.createContactInstance: CALLED!", this.getClass().getSimpleName()));
399
400                 // Is all required data set?
401                 if (!this.isRequiredPersonalDataSet()) {
402                         // No, then abort here
403                         throw new FaceletException(new IllegalArgumentException("Not all personal data is set, but createContactInstance() is called.")); //NOI18N
404                 }
405
406                 // Required personal data must be set
407                 assert (this.isRequiredPersonalDataSet()) : "not all personal data is set"; //NOI18N
408
409                 // Create new contact instance
410                 Contact localContact = new UserContact();
411
412                 // Generate phone number
413                 DialableLandLineNumber phone = new LandLineNumber(this.getPhoneCountry(), this.getPhoneAreaCode(), this.getPhoneNumber());
414                 DialableCellphoneNumber cellphone = new CellphoneNumber(this.getCellphoneCarrier(), this.getCellphoneNumber());
415                 DialableFaxNumber fax = new FaxNumber(this.getFaxCountry(), this.getFaxAreaCode(), this.getFaxNumber());
416
417                 // Create new contact
418                 Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName());
419                 contact.setContactStreet(this.getStreet());
420                 contact.setContactHouseNumber(this.getHouseNumber());
421                 contact.setContactZipCode(this.getZipCode());
422                 contact.setContactCity(this.getCity());
423                 contact.setContactCountry(this.getCountry());
424                 contact.setContactEmailAddress(this.getEmailAddress());
425                 contact.setContactBirthday(this.getBirthday());
426                 contact.setContactComment(this.getComment());
427
428                 // Debug message
429                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("{0}.createContactInstance: this.emailAddress={1}", this.getClass().getSimpleName(), this.getEmailAddress()));
430
431                 // Don't set null or wrong references
432                 if ((phone instanceof DialableLandLineNumber) && (phone.getPhoneCountry() instanceof Country) && (this.getPhoneAreaCode() != null) && (this.getPhoneNumber() != null) && (this.getPhoneAreaCode() > 0) && (this.getPhoneNumber() > 0)) {
433                         // Now the number must be given
434                         if (phone.getPhoneAreaCode() == null) {
435                                 // Is null
436                                 throw new NullPointerException("phone.phoneAreaCode is null"); //NOI18N
437                         } else if (phone.getPhoneAreaCode() < 1) {
438                                 // Abort here
439                                 throw new IllegalArgumentException("phone.phoneAreaCode is zero or below."); //NOI18N
440                         } else if (phone.getPhoneNumber() == null) {
441                                 // Is null
442                                 throw new NullPointerException("phone.phoneNumber is null"); //NOI18N
443                         } else if (phone.getPhoneNumber() < 1) {
444                                 // Abort here
445                                 throw new IllegalArgumentException("phone.phoneNumber is zero or below."); //NOI18N
446                         }
447
448                         // Set phone number
449                         contact.setContactLandLineNumber(phone);
450                 }
451
452                 // Don't set null or wrong references
453                 if ((fax instanceof DialableFaxNumber) && (fax.getPhoneCountry() instanceof Country) && (this.getFaxAreaCode() != null) && (this.getFaxNumber() != null) && (this.getFaxAreaCode() > 0) && (this.getFaxNumber() > 0)) {
454                         // Now the number must be given
455                         if (fax.getPhoneAreaCode() == null) {
456                                 // Is null
457                                 throw new NullPointerException("fax.phoneAreaCode is null"); //NOI18N
458                         } else if (fax.getPhoneAreaCode() < 1) {
459                                 // Abort here
460                                 throw new IllegalArgumentException("fax.phoneAreaCode is zero or below."); //NOI18N
461                         } else if (fax.getPhoneNumber() == null) {
462                                 // Is null
463                                 throw new NullPointerException("fax.phoneNumber is null"); //NOI18N
464                         } else if (fax.getPhoneNumber() < 1) {
465                                 // Abort here
466                                 throw new IllegalArgumentException("fax.phoneNumber is zero or below."); //NOI18N
467                         }
468
469                         // Set fax number
470                         contact.setContactFaxNumber(fax);
471                 }
472
473                 // Is the provider set?
474                 if ((cellphone instanceof DialableCellphoneNumber) && (this.getCellphoneCarrier() instanceof MobileProvider) && (this.getCellphoneNumber() != null) && (this.getCellphoneNumber() > 0)) {
475                         // Is the number set?
476                         if (cellphone.getPhoneNumber() == null) {
477                                 // Is null
478                                 throw new NullPointerException("cellphone.phoneNumber is null"); //NOI18N
479                         } else if (cellphone.getPhoneNumber() < 1) {
480                                 // Abort here
481                                 throw new IllegalArgumentException("cellphone.phoneNumber is zero or below."); //NOI18N
482                         }
483
484                         // Set cellphone number
485                         contact.setContactCellphoneNumber(cellphone);
486                 }
487
488                 // Trace message
489                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("{0}.createContactInstance: contact={1} - EXIT!", this.getClass().getSimpleName(), contact));
490
491                 // Return it
492                 return localContact;
493         }
494
495         @Override
496         public String doChangePersonalContactData () {
497                 // This method shall only be called if the user is logged-in
498                 if (!this.userLoginController.isUserLoggedIn()) {
499                         // Not logged-in
500                         throw new IllegalStateException("User is not logged-in"); //NOI18N
501                 } else if (!this.isRequiredChangePersonalDataSet()) {
502                         // Not all required fields are set
503                         throw new FaceletException("Not all required fields are set."); //NOI18N
504                 } else if (!this.userLoginController.ifCurrentPasswordMatches()) {
505                         // Password not matching
506                         throw new FaceletException(new UserPasswordMismatchException(this.userLoginController.getLoggedInUser()));
507                 }
508
509                 // Get contact instance
510                 Contact contact = this.userLoginController.getLoggedInUser().getUserContact();
511
512                 // It should be there, so run some tests on it
513                 assert (contact instanceof Contact) : "Instance userLoginController.loggedInUser.userContact is null"; //NOI18N
514                 assert (contact.getContactId() instanceof Long) : "Instance userLoginController.userContact.contactId is null"; //NOI18N
515                 assert (contact.getContactId() > 0) : MessageFormat.format("Instance userLoginController.userContact.contactId={0} is invalid", contact.getContactId()); //NOI18N
516
517                 // Update all fields
518                 contact.setContactGender(this.getGender());
519                 contact.setContactFirstName(this.getFirstName());
520                 contact.setContactFamilyName(this.getFamilyName());
521                 contact.setContactStreet(this.getStreet());
522                 contact.setContactHouseNumber(this.getHouseNumber());
523                 contact.setContactZipCode(this.getZipCode());
524                 contact.setContactCity(this.getCity());
525                 contact.setContactCountry(this.getCountry());
526
527                 // Update contact's cellphone number
528                 this.isCellphoneUnlinked = ContactUtils.updateCellPhoneNumber(contact, this.getCellphoneCarrier(), this.getCellphoneNumber());
529
530                 // Update contact's land-line number
531                 this.isLandLineUnlinked = ContactUtils.updateLandLineNumber(contact, this.getPhoneCountry(), this.getPhoneAreaCode(), this.getPhoneNumber());
532
533                 // Update contact's fax number
534                 this.isFaxUnlinked = ContactUtils.updateFaxNumber(contact, this.getFaxCountry(), this.getFaxAreaCode(), this.getFaxNumber());
535
536                 // Send it to the EJB
537                 this.contactBean.updateContactData(contact, this.isCellphoneUnlinked, this.isLandLineUnlinked, this.isFaxUnlinked);
538
539                 // All fine
540                 return "contact_data_saved"; //NOI18N
541         }
542
543         @Override
544         @SuppressWarnings ("ReturnOfDateField")
545         public Date getBirthday () {
546                 return this.birthday;
547         }
548
549         @Override
550         @SuppressWarnings ("AssignmentToDateFieldFromParameter")
551         public void setBirthday (final Date birthday) {
552                 this.birthday = birthday;
553         }
554
555         @Override
556         public MobileProvider getCellphoneCarrier () {
557                 return this.cellphoneCarrier;
558         }
559
560         @Override
561         public void setCellphoneCarrier (final MobileProvider cellphoneCarrier) {
562                 this.cellphoneCarrier = cellphoneCarrier;
563         }
564
565         @Override
566         public Long getCellphoneNumber () {
567                 return this.cellphoneNumber;
568         }
569
570         @Override
571         public void setCellphoneNumber (Long cellphoneNumber) {
572                 this.cellphoneNumber = cellphoneNumber;
573         }
574
575         @Override
576         public String getCity () {
577                 return this.city;
578         }
579
580         @Override
581         public void setCity (final String city) {
582                 this.city = city;
583         }
584
585         @Override
586         public String getComment () {
587                 return this.comment;
588         }
589
590         @Override
591         public void setComment (final String comment) {
592                 this.comment = comment;
593         }
594
595         @Override
596         public Country getCountry () {
597                 return this.country;
598         }
599
600         @Override
601         public void setCountry (final Country country) {
602                 this.country = country;
603         }
604
605         @Override
606         public String getEmailAddress () {
607                 return this.emailAddress;
608         }
609
610         @Override
611         public void setEmailAddress (final String emailAddress) {
612                 this.emailAddress = emailAddress;
613         }
614
615         @Override
616         public String getEmailAddressRepeat () {
617                 return this.emailAddressRepeat;
618         }
619
620         @Override
621         public void setEmailAddressRepeat (final String emailAddressRepeat) {
622                 this.emailAddressRepeat = emailAddressRepeat;
623         }
624
625         @Override
626         public String getFamilyName () {
627                 return this.familyName;
628         }
629
630         @Override
631         public void setFamilyName (final String familyName) {
632                 this.familyName = familyName;
633         }
634
635         @Override
636         public Integer getFaxAreaCode () {
637                 return this.faxAreaCode;
638         }
639
640         @Override
641         public void setFaxAreaCode (final Integer faxAreaCode) {
642                 this.faxAreaCode = faxAreaCode;
643         }
644
645         @Override
646         public Country getFaxCountry () {
647                 return this.faxCountry;
648         }
649
650         @Override
651         public void setFaxCountry (final Country faxCountry) {
652                 this.faxCountry = faxCountry;
653         }
654
655         @Override
656         public Long getFaxNumber () {
657                 return this.faxNumber;
658         }
659
660         @Override
661         public void setFaxNumber (final Long faxNumber) {
662                 this.faxNumber = faxNumber;
663         }
664
665         @Override
666         public String getFirstName () {
667                 return this.firstName;
668         }
669
670         @Override
671         public void setFirstName (final String firstName) {
672                 this.firstName = firstName;
673         }
674
675         @Override
676         public Gender getGender () {
677                 return this.gender;
678         }
679
680         @Override
681         public void setGender (final Gender gender) {
682                 this.gender = gender;
683         }
684
685         @Override
686         public Short getHouseNumber () {
687                 return this.houseNumber;
688         }
689
690         @Override
691         public void setHouseNumber (final Short houseNumber) {
692                 this.houseNumber = houseNumber;
693         }
694
695         @Override
696         public Integer getPhoneAreaCode () {
697                 return this.phoneAreaCode;
698         }
699
700         @Override
701         public void setPhoneAreaCode (final Integer phoneAreaCode) {
702                 this.phoneAreaCode = phoneAreaCode;
703         }
704
705         @Override
706         public Country getPhoneCountry () {
707                 return this.phoneCountry;
708         }
709
710         @Override
711         public void setPhoneCountry (final Country phoneCountry) {
712                 this.phoneCountry = phoneCountry;
713         }
714
715         @Override
716         public Long getPhoneNumber () {
717                 return this.phoneNumber;
718         }
719
720         @Override
721         public void setPhoneNumber (final Long phoneNumber) {
722                 this.phoneNumber = phoneNumber;
723         }
724
725         @Override
726         public String getStreet () {
727                 return this.street;
728         }
729
730         @Override
731         public void setStreet (final String street) {
732                 this.street = street;
733         }
734
735         @Override
736         public Integer getZipCode () {
737                 return this.zipCode;
738         }
739
740         @Override
741         public void setZipCode (final Integer zipCode) {
742                 this.zipCode = zipCode;
743         }
744
745         @Override
746         public boolean hasContacts () {
747                 return (!this.contactList.isEmpty());
748         }
749
750         /**
751          * Post-initialization of this class
752          */
753         @PostConstruct
754         public void init () {
755                 // Get full email address list for reducing EJB calls
756                 this.emailAddressList = this.contactBean.getEmailAddressList();
757
758                 // Get full contact list
759                 this.contactList = this.contactBean.getAllContacts();
760         }
761
762         @Override
763         public boolean isEmailAddressRegistered (final Contact contact) {
764                 // Cherck parameter
765                 if (null == contact) {
766                         // Throw NPE
767                         throw new NullPointerException("contact is null"); //NOI18N
768                 } else if (contact.getContactEmailAddress() == null) {
769                         // Throw again
770                         throw new NullPointerException("contact.contactEmailAddress is null"); //NOI18N
771                 } else if (contact.getContactEmailAddress().isEmpty()) {
772                         // Is empty
773                         throw new IllegalArgumentException("contact.contactEmailAddress is empty."); //NOI18N
774                 }
775
776                 // Determine it
777                 return ((this.emailAddressList instanceof List) && (this.emailAddressList.contains(contact.getContactEmailAddress())));
778         }
779
780         @Override
781         public boolean isRequiredChangePersonalDataSet () {
782                 return ((this.getGender() != null) &&
783                                 (this.getFirstName() != null) &&
784                                 (this.getFamilyName() != null) &&
785                                 (this.getStreet() != null) &&
786                                 (this.getHouseNumber() != null) &&
787                                 (this.getZipCode() != null) &&
788                                 (this.getCity() != null));
789         }
790
791         @Override
792         public boolean isRequiredPersonalDataSet () {
793                 return ((this.getGender() != null) &&
794                                 (this.getFirstName() != null) &&
795                                 (this.getFamilyName() != null) &&
796                                 (this.getStreet() != null) &&
797                                 (this.getHouseNumber() != null) &&
798                                 (this.getZipCode() != null) &&
799                                 (this.getCity() != null) &&
800                                 (this.getEmailAddress() != null) &&
801                                 (this.getEmailAddressRepeat() != null));
802         }
803
804         @Override
805         public boolean isSameEmailAddressEntered () {
806                 return (Objects.equals(this.getEmailAddress(), this.getEmailAddressRepeat()));
807         }
808
809         @Override
810         public Contact lookupContactById (final Long contactId) throws ContactNotFoundException {
811                 // Init variable
812                 Contact localContact = null;
813
814                 // Clear this bean
815                 this.clear();
816
817                 // Try to lookup it in visible user list
818                 for (final Iterator<Contact> iterator = this.contactList.iterator(); iterator.hasNext();) {
819                         // Get next user
820                         Contact next = iterator.next();
821
822                         // Is the user id found?
823                         if (Objects.equals(next.getContactId(), contactId)) {
824                                 // Copy to other variable
825                                 localContact = next;
826                                 break;
827                         }
828                 }
829
830                 // Is it still null?
831                 if (null == localContact) {
832                         // Not visible for the current user
833                         throw new ContactNotFoundException(contactId);
834                 }
835
836                 // Copy all data to this bean
837                 this.copyContact(localContact);
838
839                 // Return it
840                 return localContact;
841         }
842
843         @Override
844         public void updateContactDataFromController (final Contact contact) {
845                 // Is the instance valid?
846                 if (null == contact) {
847                         // Throw NPE
848                         throw new NullPointerException("contact is null"); //NOI18N
849                 } else if (contact.getContactId() == null) {
850                         // Throw NPE
851                         throw new NullPointerException("contact.contactId is null"); //NOI18N
852                 } else if (contact.getContactId() < 1) {
853                         // Not valid id number
854                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
855                 }
856
857                 // Set all
858                 this.copyContact(contact);
859         }
860
861         /**
862          * Adds email address to bean's internal list.
863          * <p>
864          * @param contact Contact instance
865          */
866         private void addUserNameEmailAddress (final Contact contact) {
867                 // Make sure the entry is not added yet
868                 if (this.emailAddressList.contains(contact.getContactEmailAddress())) {
869                         // Already added
870                         throw new IllegalArgumentException(MessageFormat.format("Email address {0} already added.", contact.getContactEmailAddress())); //NOI18N
871                 }
872
873                 // Add email addres
874                 this.emailAddressList.add(contact.getContactEmailAddress());
875         }
876
877         /**
878          * Clears this bean
879          */
880         private void clear () {
881                 // Clear all data
882                 // - personal data
883                 this.setGender(Gender.UNKNOWN);
884                 this.setFirstName(null);
885                 this.setFamilyName(null);
886                 this.setStreet(null);
887                 this.setHouseNumber(null);
888                 this.setZipCode(null);
889                 this.setCity(null);
890                 this.setCountry(null);
891
892                 // - contact data
893                 this.setEmailAddress(null);
894                 this.setEmailAddressRepeat(null);
895                 this.setPhoneAreaCode(null);
896                 this.setCellphoneCarrier(null);
897                 this.setFaxAreaCode(null);
898
899                 // - other data
900                 this.setBirthday(null);
901                 this.setComment(null);
902         }
903
904         /**
905          * Copies given contact into the controller
906          * <p>
907          * @param contact Contact instance
908          */
909         private void copyContact (final Contact contact) {
910                 // Is the instance valid?
911                 if (null == contact) {
912                         // Throw NPE
913                         throw new NullPointerException("contact is null"); //NOI18N
914                 } else if (contact.getContactId() == null) {
915                         // Throw NPE
916                         throw new NullPointerException("contact.contactId is null"); //NOI18N
917                 } else if (contact.getContactId() < 1) {
918                         // Not valid id number
919                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
920                 }
921
922                 // Copy all fields:
923                 // - base data
924                 this.setGender(contact.getContactGender());
925                 this.setFirstName(contact.getContactFirstName());
926                 this.setFamilyName(contact.getContactFamilyName());
927                 this.setStreet(contact.getContactStreet());
928                 this.setHouseNumber(contact.getContactHouseNumber());
929                 this.setZipCode(contact.getContactZipCode());
930                 this.setCity(contact.getContactCity());
931                 this.setCountry(contact.getContactCountry());
932                 this.setEmailAddress(contact.getContactEmailAddress());
933                 this.setBirthday(contact.getContactBirthday());
934                 this.setComment(contact.getContactComment());
935
936                 // Get cellphone, phone and fax instance
937                 DialableCellphoneNumber cellphone = contact.getContactCellphoneNumber();
938                 DialableFaxNumber fax = contact.getContactFaxNumber();
939                 DialableLandLineNumber phone = contact.getContactLandLineNumber();
940
941                 // - contact data
942                 if ((phone instanceof DialableLandLineNumber) && (phone.getPhoneAreaCode() > 0)) {
943                         this.setPhoneCountry(phone.getPhoneCountry());
944                         this.setPhoneAreaCode(phone.getPhoneAreaCode());
945                         this.setPhoneNumber(phone.getPhoneNumber());
946                 }
947
948                 if ((cellphone instanceof DialableCellphoneNumber) && (cellphone.getCellphoneProvider() instanceof MobileProvider)) {
949                         this.setCellphoneCarrier(cellphone.getCellphoneProvider());
950                         this.setCellphoneNumber(cellphone.getPhoneNumber());
951                 }
952
953                 if ((fax instanceof DialableFaxNumber) && (fax.getPhoneAreaCode() > 0)) {
954                         this.setFaxCountry(fax.getPhoneCountry());
955                         this.setFaxAreaCode(fax.getPhoneAreaCode());
956                         this.setFaxNumber(fax.getPhoneNumber());
957                 }
958         }
959
960         /**
961          * Removes given contact from all lists
962          * <p>
963          * @param contact Contact instance to remove
964          */
965         private void removeContact (final Contact contact) {
966                 // Is the instance valid?
967                 if (null == contact) {
968                         // Throw NPE
969                         throw new NullPointerException("contact is null"); //NOI18N
970                 } else if (contact.getContactId() == null) {
971                         // Throw NPE
972                         throw new NullPointerException("contact.contactId is null"); //NOI18N
973                 } else if (contact.getContactId() < 1) {
974                         // Not valid id number
975                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
976                 }
977
978                 // Remove from general list
979                 if (!this.contactList.remove(contact)) {
980                         // Did not remove contact
981                         throw new IllegalStateException(MessageFormat.format("contact {0} was not removed.", contact.getContactId())); //NOI18N
982                 }
983
984                 // Remove from other lists
985                 this.emailAddressList.remove(contact.getContactEmailAddress());
986         }
987
988 }