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