]> git.mxchange.org Git - addressbook-war.git/blob
00429cc4d9664d55ecef855d263458547dd0557d
[addressbook-war.git] /
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
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.addressbook.beans.contact.phone;
18
19 import java.text.MessageFormat;
20 import javax.annotation.PostConstruct;
21 import javax.enterprise.context.RequestScoped;
22 import javax.enterprise.event.Event;
23 import javax.enterprise.event.Observes;
24 import javax.enterprise.inject.Any;
25 import javax.faces.view.facelets.FaceletException;
26 import javax.inject.Inject;
27 import javax.inject.Named;
28 import javax.naming.Context;
29 import javax.naming.InitialContext;
30 import javax.naming.NamingException;
31 import org.mxchange.addressbook.beans.BaseAddressbookController;
32 import org.mxchange.addressbook.beans.helper.AddressbookWebRequestHelperController;
33 import org.mxchange.addressbook.beans.phone.AddressbookAdminPhoneWebRequestController;
34 import org.mxchange.jcontacts.contact.Contact;
35 import org.mxchange.jcontacts.events.contact.add.ObservableAdminAddedContactEvent;
36 import org.mxchange.jcontacts.events.contact.created.ObservableCreatedContactEvent;
37 import org.mxchange.jcontacts.events.contact.update.ObservableAdminUpdatedContactEvent;
38 import org.mxchange.jcontacts.events.fax.linked.AdminLinkedFaxNumberEvent;
39 import org.mxchange.jcontacts.events.fax.linked.ObservableAdminLinkedFaxNumberEvent;
40 import org.mxchange.jcontacts.events.fax.unlinked.AdminUnlinkedFaxNumberEvent;
41 import org.mxchange.jcontacts.events.fax.unlinked.ObservableAdminUnlinkedFaxNumberEvent;
42 import org.mxchange.jcontacts.events.landline.linked.AdminLinkedLandLineNumberEvent;
43 import org.mxchange.jcontacts.events.landline.linked.ObservableAdminLinkedLandLineNumberEvent;
44 import org.mxchange.jcontacts.events.landline.unlinked.AdminUnlinkedLandLineNumberEvent;
45 import org.mxchange.jcontacts.events.landline.unlinked.ObservableAdminUnlinkedLandLineNumberEvent;
46 import org.mxchange.jcontacts.events.mobile.linked.AdminLinkedMobileNumberEvent;
47 import org.mxchange.jcontacts.events.mobile.linked.ObservableAdminLinkedMobileNumberEvent;
48 import org.mxchange.jcontacts.events.mobile.unlinked.AdminUnlinkedMobileNumberEvent;
49 import org.mxchange.jcontacts.events.mobile.unlinked.ObservableAdminUnlinkedMobileNumberEvent;
50 import org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote;
51 import org.mxchange.jcountry.data.Country;
52 import org.mxchange.jphone.events.fax.created.ObservableCreatedFaxNumberEvent;
53 import org.mxchange.jphone.events.landline.created.ObservableCreatedLandLineNumberEvent;
54 import org.mxchange.jphone.events.mobile.created.ObservableCreatedMobileNumberEvent;
55 import org.mxchange.jphone.exceptions.PhoneNumberAlreadyLinkedException;
56 import org.mxchange.jphone.exceptions.PhoneNumberNotLinkedException;
57 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
58 import org.mxchange.jphone.phonenumbers.fax.FaxNumber;
59 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
60 import org.mxchange.jphone.phonenumbers.landline.LandLineNumber;
61 import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
62 import org.mxchange.jphone.phonenumbers.mobile.MobileNumber;
63 import org.mxchange.jphone.phonenumbers.mobileprovider.MobileProvider;
64 import org.mxchange.jusercore.events.user.add.ObservableAdminAddedUserEvent;
65
66 /**
67  * An administrative contact phone controller (bean)
68  * <p>
69  * @author Roland Häder<roland@mxchange.org>
70  */
71 @Named ("adminContactPhoneController")
72 @RequestScoped
73 public class AddressbookAdminContactPhoneWebRequestBean extends BaseAddressbookController implements AddressbookAdminContactPhoneWebRequestController {
74
75         /**
76          * Call-stack instance (5 may show BeanELResolver.getValue as caller)
77          */
78         private static final short THREAD_STACK = 5;
79
80         /**
81          * Serial number
82          */
83         private static final long serialVersionUID = 542_145_347_916L;
84
85         /**
86          * Event being fired when a fax number has been linked
87          */
88         @Inject
89         @Any
90         private Event<ObservableAdminLinkedFaxNumberEvent> adminLinkedFaxNumberEvent;
91
92         /**
93          * Event being fired when a land-line number has been linked
94          */
95         @Inject
96         @Any
97         private Event<ObservableAdminLinkedLandLineNumberEvent> adminLinkedLandLineNumberEvent;
98
99         /**
100          * Event being fired when a mobile number has been linked
101          */
102         @Inject
103         @Any
104         private Event<ObservableAdminLinkedMobileNumberEvent> adminLinkedMobileNumberEvent;
105
106         /**
107          * Administrative EJB for phone number
108          */
109         private AdminContactsPhoneSessionBeanRemote adminPhoneBean;
110
111         /**
112          * Administrative phone controller
113          */
114         @Inject
115         private AddressbookAdminPhoneWebRequestController adminPhoneController;
116
117         /**
118          * Bean helper
119          */
120         @Inject
121         private AddressbookWebRequestHelperController beanHelper;
122
123
124         /**
125          * Area code (city dial prefix) for fax number
126          */
127         private Integer faxAreaCode;
128
129         /**
130          * Country (for dial prefix) for fax number
131          */
132         private Country faxCountry;
133
134         /**
135          * Fax number
136          */
137         private Long faxNumber;
138         /**
139          * Event being fired when a fax number has been unlinked
140          */
141         @Inject
142         @Any
143         private Event<ObservableAdminUnlinkedFaxNumberEvent> faxNumberUnlinkedEvent;
144
145         /**
146          * Area code (city dial prefix) for land-line number
147          */
148         private Integer landLineAreaCode;
149
150         /**
151          * Country (for dial prefix) for land-line number
152          */
153         private Country landLineCountry;
154
155         /**
156          * Land-line number
157          */
158         private Long landLineNumber;
159         /**
160          * Event being fired when a land-line number has been unlinked
161          */
162         @Inject
163         @Any
164         private Event<ObservableAdminUnlinkedLandLineNumberEvent> landLineNumberUnlinkedEvent;
165
166         /**
167          * Mobile number
168          */
169         private Long mobileNumber;
170         /**
171          * Event being fired when admin unlinks mobile from contact
172          */
173         @Inject
174         @Any
175         private Event<ObservableAdminUnlinkedMobileNumberEvent> mobileNumberUnlinkedEvent;
176         /**
177          * Mobile provider
178          */
179         private MobileProvider mobileProvider;
180
181         /**
182          * Default constructor
183          */
184         public AddressbookAdminContactPhoneWebRequestBean () {
185                 // Call super constructor
186                 super();
187
188                 // String caller = MessageFormat.format("{0}.{1}", Thread.currentThread().getStackTrace()[3].getClassName(), Thread.currentThread().getStackTrace()[3].getMethodName());
189                 // System.out.println(MessageFormat.format("{0}: Constructed, caller: {1}", this.getClass().getSimpleName(), caller));
190         }
191
192         /**
193          * Observes events being fired when an administrator has added a new
194          * contact.
195          * <p>
196          * @param event Event being fired
197          */
198         public void afterAdminAddedContactEvent (@Observes final ObservableAdminAddedContactEvent event) {
199                 // The event must be valid
200                 if (null == event) {
201                         // Throw NPE
202                         throw new NullPointerException("event is null"); //NOI18N
203                 } else if (event.getAddedContact() == null) {
204                         // Throw again ...
205                         throw new NullPointerException("event.addedContact is null"); //NOI18N
206                 } else if (event.getAddedContact().getContactId() == null) {
207                         // ... and again
208                         throw new NullPointerException("event.addedContact.contactId is null"); //NOI18N
209                 } else if (event.getAddedContact().getContactId() < 1) {
210                         // Not valid
211                         throw new IllegalArgumentException(MessageFormat.format("event.addedContact.contactId={0} is not valid", event.getAddedContact().getContactId())); //NOI18N
212                 }
213
214                 // Clear this bean
215                 this.clear();
216         }
217
218         /**
219          * Event observer for newly added users by administrator
220          * <p>
221          * @param event Event being fired
222          */
223         public void afterAdminAddedUserEvent (@Observes final ObservableAdminAddedUserEvent event) {
224                 // event should not be null
225                 if (null == event) {
226                         // Throw NPE
227                         throw new NullPointerException("event is null"); //NOI18N
228                 } else if (event.getAddedUser() == null) {
229                         // Throw NPE again
230                         throw new NullPointerException("event.addedUser is null"); //NOI18N
231                 } else if (event.getAddedUser().getUserId() == null) {
232                         // userId is null
233                         throw new NullPointerException("event.addedUser.userId is null"); //NOI18N
234                 } else if (event.getAddedUser().getUserId() < 1) {
235                         // Not avalid id
236                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getAddedUser(), event.getAddedUser().getUserId())); //NOI18N
237                 }
238
239                 // Clear all data
240                 this.clear();
241         }
242
243         /**
244          * Event observer for updated contact data by administrators
245          * <p>
246          * @param event Updated contact data event
247          */
248         public void afterAdminUpdatedContactDataEvent (@Observes final ObservableAdminUpdatedContactEvent event) {
249                 // event should not be null
250                 if (null == event) {
251                         // Throw NPE
252                         throw new NullPointerException("event is null"); //NOI18N
253                 } else if (event.getUpdatedContact() == null) {
254                         // Throw NPE again
255                         throw new NullPointerException("event.updatedContact is null"); //NOI18N
256                 } else if (event.getUpdatedContact().getContactId() == null) {
257                         // userId is null
258                         throw new NullPointerException("event.updatedContact.contactId is null"); //NOI18N
259                 } else if (event.getUpdatedContact().getContactId() < 1) {
260                         // Not avalid id
261                         throw new IllegalArgumentException(MessageFormat.format("contactId of contact={0} is not valid: {1}", event.getUpdatedContact(), event.getUpdatedContact().getContactId())); //NOI18N
262                 }
263
264                 // Clear all data
265                 this.clear();
266         }
267
268         /**
269          * Observer for events being fired when a bean helper has successfully
270          * created a contact instance.
271          * <p>
272          * @param event Event being fired
273          */
274         public void afterCreatedContactEvent (@Observes final ObservableCreatedContactEvent event) {
275                 // Log message
276                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("AdminContactController::afterCreatedContactEvent(): contact={0} - CALLED!", contact)); //NOI18N
277
278                 // The event instance must be valid
279                 if (null == event) {
280                         // Throw NPE again
281                         throw new NullPointerException("event is null"); //NOI18N
282                 } else if (event.getCreatedContact() == null) {
283                         // Throw NPE again
284                         throw new NullPointerException("event.createdContact is null"); //NOI18N //NOI18N
285                 } else if (event.getCreatedContact().getContactId() == null) {
286                         // Throw NPE again
287                         throw new NullPointerException("event.createdContact.contactId is null"); //NOI18N //NOI18N
288                 } else if (event.getCreatedContact().getContactId() < 1) {
289                         // Not valid
290                         throw new IllegalStateException(MessageFormat.format("event.createdContact.contactId={0} is not valid.", event.getCreatedContact().getContactId())); //NOI18N
291                 }
292
293                 // Set it here
294                 this.setContact(event.getCreatedContact());
295         }
296
297         /**
298          * Observes events being fired when a bean helper has successfully created a
299          * fax number instance.
300          * <p>
301          * @param event Event being fired
302          */
303         public void afterCreatedFaxNumberEvent (@Observes final ObservableCreatedFaxNumberEvent event) {
304                 // The event instance must be valid
305                 if (null == event) {
306                         // Throw NPE
307                         throw new NullPointerException("event is null"); //NOI18N
308                 } else if (event.getFaxNumber() == null) {
309                         // Throw NPE again
310                         throw new NullPointerException("event.faxNumber is null"); //NOI18N
311                 } else if (event.getFaxNumber().getPhoneId() == null) {
312                         // Throw NPE yet again
313                         throw new NullPointerException("event.faxNumber.phoneId is null"); //NOI18N
314                 } else if (event.getFaxNumber().getPhoneId() < 1) {
315                         // Throw NPE yet again
316                         throw new NullPointerException(MessageFormat.format("event.faxNumber.phoneId={0} is invalid", event.getFaxNumber().getPhoneId())); //NOI18N
317                 }
318
319                 // Get fax number from event
320                 DialableFaxNumber number = event.getFaxNumber();
321
322                 // Copy all data to this bean
323                 this.setPhoneId(number.getPhoneId());
324                 this.setFaxCountry(number.getPhoneCountry());
325                 this.setFaxAreaCode(number.getPhoneAreaCode());
326                 this.setFaxNumber(number.getPhoneNumber());
327                 this.setPhoneEntryCreated(number.getPhoneEntryCreated());
328                 this.setPhoneEntryUpdated(number.getPhoneEntryUpdated());
329         }
330
331         /**
332          * Observes events being fired when a bean helper has successfully created a
333          * land-line number instance.
334          * <p>
335          * @param event Event being fired
336          */
337         public void afterCreatedLandLineNumberEvent (@Observes final ObservableCreatedLandLineNumberEvent event) {
338                 // The event instance must be valid
339                 if (null == event) {
340                         // Throw NPE
341                         throw new NullPointerException("event is null"); //NOI18N
342                 } else if (event.getLandLineNumber() == null) {
343                         // Throw NPE again
344                         throw new NullPointerException("event.landLineNumber is null"); //NOI18N
345                 } else if (event.getLandLineNumber().getPhoneId() == null) {
346                         // Throw NPE yet again
347                         throw new NullPointerException("event.landLineNumber.phoneId is null"); //NOI18N
348                 } else if (event.getLandLineNumber().getPhoneId() < 1) {
349                         // Throw NPE yet again
350                         throw new NullPointerException(MessageFormat.format("event.landLineNumber.phoneId={0} is invalid", event.getLandLineNumber().getPhoneId())); //NOI18N
351                 }
352
353                 // Get fax number from event
354                 DialableLandLineNumber number = event.getLandLineNumber();
355
356                 // Copy all data to this bean
357                 this.setPhoneId(number.getPhoneId());
358                 this.setLandLineCountry(number.getPhoneCountry());
359                 this.setLandLineAreaCode(number.getPhoneAreaCode());
360                 this.setLandLineNumber(number.getPhoneNumber());
361                 this.setPhoneEntryCreated(number.getPhoneEntryCreated());
362                 this.setPhoneEntryUpdated(number.getPhoneEntryUpdated());
363         }
364
365         /**
366          * Observes events being fired when a bean helper has successfully created a
367          * mobile number instance.
368          * <p>
369          * @param event Event being fired
370          */
371         public void afterCreatedMobileNumberEvent (@Observes final ObservableCreatedMobileNumberEvent event) {
372                 // The event instance must be valid
373                 if (null == event) {
374                         // Throw NPE
375                         throw new NullPointerException("event is null"); //NOI18N
376                 } else if (event.getMobileNumber() == null) {
377                         // Throw NPE again
378                         throw new NullPointerException("event.mobileNumber is null"); //NOI18N
379                 } else if (event.getMobileNumber().getPhoneId() == null) {
380                         // Throw NPE yet again
381                         throw new NullPointerException("event.mobileNumber.phoneId is null"); //NOI18N
382                 } else if (event.getMobileNumber().getPhoneId() < 1) {
383                         // Throw NPE yet again
384                         throw new NullPointerException(MessageFormat.format("event.mobileNumber.phoneId={0} is invalid", event.getMobileNumber().getPhoneId())); //NOI18N
385                 }
386
387                 // Get fax number from event
388                 DialableMobileNumber number = event.getMobileNumber();
389
390                 // Copy all data to this bean
391                 this.setPhoneId(number.getPhoneId());
392                 this.setMobileProvider(number.getMobileProvider());
393                 this.setMobileNumber(number.getPhoneNumber());
394                 this.setPhoneEntryCreated(number.getPhoneEntryCreated());
395                 this.setPhoneEntryUpdated(number.getPhoneEntryUpdated());
396         }
397
398         /**
399          * Links fax number to contact from bean helper as "main fax number".
400          * <p>
401          * @return Redirect outcome
402          */
403         public String doLinkMainFaxNumber () {
404                 // Get contact from helper
405                 Contact contact = this.beanHelper.getContact();
406
407                 // Is all data properly set?
408                 if (null == contact) {
409                         // Throw NPE
410                         throw new NullPointerException("contact is null"); //NOI18N
411                 } else if (contact.getContactId() == null) {
412                         // Throw it again
413                         throw new NullPointerException("contact.contactId is null"); //NOI18N
414                 } else if (contact.getContactId() < 1) {
415                         // Is not valid
416                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
417                 } else if (this.getFaxCountry() == null) {
418                         // Throw NPE again
419                         throw new NullPointerException("this.faxCountry is null"); //NOI18N
420                 } else if (this.getFaxCountry().getCountryId() == null) {
421                         // Throw NPE again
422                         throw new NullPointerException("this.faxCountry.countryId is null"); //NOI18N
423                 } else if (this.getFaxCountry().getCountryId() < 1) {
424                         // Invalid id number
425                         throw new IllegalArgumentException(MessageFormat.format("this.faxCountry.countryId={0} is not valid.", this.getFaxCountry().getCountryId())); //NOI18N
426                 } else if (this.getFaxAreaCode() == null) {
427                         // Throw NPE again
428                         throw new NullPointerException("this.faxAreaCode is null"); //NOI18N
429                 } else if (this.getFaxAreaCode() < 1) {
430                         // Invalid id number
431                         throw new IllegalArgumentException(MessageFormat.format("this.faxAreaCode={0} is invalid", this.getFaxAreaCode())); //NOI18N
432                 } else if (this.getFaxNumber() == null) {
433                         // Throw NPE again
434                         throw new NullPointerException("this.faxNumber is null"); //NOI18N
435                 } else if (this.getFaxNumber() < 1) {
436                         // Invalid id number
437                         throw new IllegalArgumentException(MessageFormat.format("this.faxNumber={0} is invalid", this.getFaxNumber())); //NOI18N
438                 }
439
440                 // Init instances
441                 Contact updatedContact;
442                 DialableFaxNumber number = new FaxNumber(this.getFaxCountry(), this.getFaxAreaCode(), this.getFaxNumber());
443
444                 // Try it again
445                 try {
446                         // Link it, too
447                         updatedContact = this.adminPhoneBean.linkNewFaxNumberWithContact(contact, number);
448                 } catch (final PhoneNumberAlreadyLinkedException ex) {
449                         // Throw again as cause
450                         this.showFacesMessage("form_add_contact_fax:faxNumber", ex); //NOI18N
451                         return ""; //NOI18N
452                 }
453
454                 // Fire event
455                 this.adminLinkedFaxNumberEvent.fire(new AdminLinkedFaxNumberEvent(updatedContact, number));
456
457                 // Return to contact profile
458                 return "admin_show_contact"; //NOI18N
459         }
460
461         /**
462          * Links land-line number to contact from bean helper as "main land-line
463          * number".
464          * <p>
465          * @return Redirect outcome
466          */
467         public String doLinkMainLandLineNumber () {
468                 // Get contact from helper
469                 Contact contact = this.beanHelper.getContact();
470
471                 // Is all data properly set?
472                 if (null == contact) {
473                         // Throw NPE
474                         throw new NullPointerException("contact is null"); //NOI18N
475                 } else if (contact.getContactId() == null) {
476                         // Throw it again
477                         throw new NullPointerException("contact.contactId is null"); //NOI18N
478                 } else if (contact.getContactId() < 1) {
479                         // Is not valid
480                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
481                 } else if (this.getLandLineCountry() == null) {
482                         // Throw NPE again
483                         throw new NullPointerException("this.landLineCountry is null"); //NOI18N
484                 } else if (this.getLandLineCountry().getCountryId() == null) {
485                         // Throw NPE again
486                         throw new NullPointerException("this.landLineCountry.countryId is null"); //NOI18N
487                 } else if (this.getLandLineCountry().getCountryId() < 1) {
488                         // Invalid id number
489                         throw new IllegalArgumentException(MessageFormat.format("this.landLineCountry.countryId={0} is not valid.", this.getLandLineCountry().getCountryId())); //NOI18N
490                 } else if (this.getLandLineAreaCode() == null) {
491                         // Throw NPE again
492                         throw new NullPointerException("this.landLineAreaCode is null"); //NOI18N
493                 } else if (this.getLandLineAreaCode() < 1) {
494                         // Invalid id number
495                         throw new IllegalArgumentException(MessageFormat.format("this.landLineAreaCode={0} is invalid", this.getLandLineAreaCode())); //NOI18N
496                 } else if (this.getLandLineNumber() == null) {
497                         // Throw NPE again
498                         throw new NullPointerException("this.landLineNumber is null"); //NOI18N
499                 } else if (this.getLandLineNumber() < 1) {
500                         // Invalid id number
501                         throw new IllegalArgumentException(MessageFormat.format("this.landLineNumber={0} is invalid", this.getLandLineNumber())); //NOI18N
502                 }
503
504                 // Init instance
505                 Contact updatedContact;
506                 DialableLandLineNumber number = new LandLineNumber(this.getLandLineCountry(), this.getLandLineAreaCode(), this.getLandLineNumber());
507
508                 // Try it again
509                 try {
510                         // Link it, too
511                         updatedContact = this.adminPhoneBean.linkNewLandLineNumberWithContact(contact, number);
512                 } catch (final PhoneNumberAlreadyLinkedException ex) {
513                         // Throw again as cause
514                         this.showFacesMessage("form_add_contact_landLine:landLineNumber", ex); //NOI18N
515                         return ""; //NOI18N
516                 }
517
518                 // Fire event
519                 this.adminLinkedLandLineNumberEvent.fire(new AdminLinkedLandLineNumberEvent(updatedContact, number));
520
521                 // Return to contact profile
522                 return "admin_show_contact"; //NOI18N
523         }
524
525         /**
526          * Links mobile number to contact from bean helper as "main mobile number".
527          * <p>
528          * @return Redirect outcome
529          */
530         public String doLinkMainMobileNumber () {
531                 // Get contact from helper
532                 Contact contact = this.beanHelper.getContact();
533
534                 // Is all data properly set?
535                 if (null == contact) {
536                         // Throw NPE
537                         throw new NullPointerException("contact is null"); //NOI18N
538                 } else if (contact.getContactId() == null) {
539                         // Throw it again
540                         throw new NullPointerException("contact.contactId is null"); //NOI18N
541                 } else if (contact.getContactId() < 1) {
542                         // Is not valid
543                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
544                 } else if (this.getMobileProvider() == null) {
545                         // Throw NPE
546                         throw new NullPointerException("this.mobileProvider is null"); //NOI18N
547                 } else if (this.getMobileProvider().getProviderId() == null) {
548                         // Throw NPE
549                         throw new NullPointerException("this.mobileProvider.providerId is null"); //NOI18N
550                 } else if (this.getMobileProvider().getProviderId() < 1) {
551                         // Throw NPE
552                         throw new NullPointerException(MessageFormat.format("this.mobileProvider.providerId={0} is invalid", this.getMobileProvider().getProviderId())); //NOI18N
553                 } else if (this.getMobileNumber() == null) {
554                         // Throw NPE again
555                         throw new NullPointerException("this.mobileNumber is null"); //NOI18N
556                 } else if (this.getMobileNumber() < 1) {
557                         // Invalid id number
558                         throw new IllegalArgumentException(MessageFormat.format("this.mobileNumber={0} is invalid", this.getMobileNumber())); //NOI18N
559                 }
560
561                 // Init instance
562                 Contact updatedContact;
563                 DialableMobileNumber number = new MobileNumber(this.getMobileProvider(), this.getMobileNumber());
564
565                 // Try it again
566                 try {
567                         // Link it, too
568                         updatedContact = this.adminPhoneBean.linkNewMobileNumberWithContact(contact, number);
569                 } catch (final PhoneNumberAlreadyLinkedException ex) {
570                         // Throw again as cause
571                         this.showFacesMessage("form_add_contact_mobile:mobileNumber", ex); //NOI18N
572                         return ""; //NOI18N
573                 }
574
575                 // Fire event
576                 this.adminLinkedMobileNumberEvent.fire(new AdminLinkedMobileNumberEvent(updatedContact, number));
577
578                 // Return to contact profile
579                 return "admin_show_contact"; //NOI18N
580         }
581
582         /**
583          * Getter for fax area code
584          * <p>
585          * @return Fax area code
586          */
587         public Integer getFaxAreaCode () {
588                 return this.faxAreaCode;
589         }
590
591         /**
592          * Setter for fax area code
593          * <p>
594          * @param faxAreaCode Fax area code
595          */
596         public void setFaxAreaCode (final Integer faxAreaCode) {
597                 this.faxAreaCode = faxAreaCode;
598         }
599
600         /**
601          * Getter for fax numbers country
602          * <p>
603          * @return Fax numbers country
604          */
605         public Country getFaxCountry () {
606                 return this.faxCountry;
607         }
608
609         /**
610          * Setter for fax numbers country
611          * <p>
612          * @param faxCountry Fax numbers country
613          */
614         public void setFaxCountry (final Country faxCountry) {
615                 this.faxCountry = faxCountry;
616         }
617
618         /**
619          * Getter for fax number
620          * <p>
621          * @return Fax number
622          */
623         public Long getFaxNumber () {
624                 return this.faxNumber;
625         }
626
627         /**
628          * Setter for fax number
629          * <p>
630          * @param faxNumber Fax number
631          */
632         public void setFaxNumber (final Long faxNumber) {
633                 this.faxNumber = faxNumber;
634         }
635
636         /**
637          * Getter for land-line area code
638          * <p>
639          * @return Land-line area code
640          */
641         public Integer getLandLineAreaCode () {
642                 return this.landLineAreaCode;
643         }
644
645         /**
646          * Setter for land-line area code
647          * <p>
648          * @param landLineAreaCode Land-line area code
649          */
650         public void setLandLineAreaCode (final Integer landLineAreaCode) {
651                 this.landLineAreaCode = landLineAreaCode;
652         }
653
654         /**
655          * Getter for land-line country
656          * <p>
657          * @return Land-line country
658          */
659         public Country getLandLineCountry () {
660                 return this.landLineCountry;
661         }
662
663         /**
664          * Setter for land-line country
665          * <p>
666          * @param landLineCountry Land-line country
667          */
668         public void setLandLineCountry (final Country landLineCountry) {
669                 this.landLineCountry = landLineCountry;
670         }
671
672         /**
673          * Getter for land-line number
674          * <p>
675          * @return Land-line number
676          */
677         public Long getLandLineNumber () {
678                 return this.landLineNumber;
679         }
680
681         /**
682          * Setter for land-line number
683          * <p>
684          * @param landLineNumber Land-line number
685          */
686         public void setLandLineNumber (final Long landLineNumber) {
687                 this.landLineNumber = landLineNumber;
688         }
689
690
691         /**
692          * Getter for mobile number
693          * <p>
694          * @return Mobile number
695          */
696         public Long getMobileNumber () {
697                 return this.mobileNumber;
698         }
699
700         /**
701          * Setter for mobile number
702          * <p>
703          * @param mobileNumber Mobile number
704          */
705         public void setMobileNumber (final Long mobileNumber) {
706                 this.mobileNumber = mobileNumber;
707         }
708         /**
709          * Getter for mobile provider
710          * <p>
711          * @return Mobile provider
712          */
713         public MobileProvider getMobileProvider () {
714                 return this.mobileProvider;
715         }
716         /**
717          * Setter for mobile provider
718          * <p>
719          * @param mobileProvider Mobile provider
720          */
721         public void setMobileProvider (final MobileProvider mobileProvider) {
722                 this.mobileProvider = mobileProvider;
723         }
724
725         /**
726          * Post-construction method
727          */
728         @PostConstruct
729         public void init () {
730                 // Try it
731                 try {
732                         // Get initial context
733                         Context context = new InitialContext();
734
735                         // Try to lookup the beans
736                         this.adminPhoneBean = (AdminContactsPhoneSessionBeanRemote) context.lookup("java:global/addressbook-ejb/adminContactPhone!org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote"); //NOI18N
737                 } catch (final NamingException e) {
738                         // Throw again
739                         throw new FaceletException(e);
740                 }
741         }
742
743         /**
744          * Unlinks fax data with current contact
745          * <p>
746          * @return Redirect outcome
747          */
748         public String unlinkFaxContactData () {
749                 // Is all data set
750                 if (this.beanHelper.getFaxNumber() == null) {
751                         // Not set, throw NPE
752                         throw new NullPointerException("this.beanHelper.faxNumber is null"); //NOI18N
753                 } else if (this.beanHelper.getFaxNumber().getPhoneId() == null) {
754                         // Throw NPE again
755                         throw new NullPointerException("this.beanHelper.faxNumber.phoneId is null"); //NOI18N
756                 } else if (this.beanHelper.getFaxNumber().getPhoneId() < 1) {
757                         // Invalid number
758                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.faxNumber.phoneId={0} is not valid", this.beanHelper.getFaxNumber().getPhoneId())); //NOI18N
759                 } else if (this.beanHelper.getFaxNumber().getPhoneNumber() == null) {
760                         // Throw NPE again
761                         throw new NullPointerException("this.beanHelper.faxNumber.phoneNumber is null"); //NOI18N
762                 } else if (this.beanHelper.getFaxNumber().getPhoneNumber() < 1) {
763                         // Throw it again ...
764                         throw new NullPointerException(MessageFormat.format("this.beanHelper.faxNumber.phoneNumber={0} is not valid.", this.beanHelper.getFaxNumber().getPhoneNumber())); //NOI18N
765                 } else if (this.beanHelper.getContact() == null) {
766                         // ... and throw again
767                         throw new NullPointerException("this.beanHelper.contact is null"); //NOI18N
768                 } else if (this.beanHelper.getContact().getContactId() == null) {
769                         // ... and again ...
770                         throw new NullPointerException("this.beanHelper.contact.contactId is null"); //NOI18N
771                 } else if (this.beanHelper.getContact().getContactId() < 1) {
772                         // Invalid id number
773                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.contact.contactId={0} is invalid.", this.beanHelper.getContact().getContactId())); //NOI18N
774                 }
775
776                 // Init contact instance
777                 Contact updatedContact;
778
779                 try {
780                         // Unlink it and return contact without fax instance
781                         updatedContact = this.adminPhoneBean.unlinkFaxDataFromContact(this.beanHelper.getContact(), this.beanHelper.getFaxNumber());
782                 } catch (final PhoneNumberNotLinkedException ex) {
783                         // Did not work
784                         this.showFacesMessage("form_unlink_contact_fax:faxNumberId", ex); //NOI18N
785                         return ""; //NOI18N
786                 }
787
788                 // Fire event
789                 this.faxNumberUnlinkedEvent.fire(new AdminUnlinkedFaxNumberEvent(updatedContact, this.beanHelper.getFaxNumber()));
790
791                 // All fine here
792                 return "admin_show_contact"; //NOI18N
793         }
794
795         /**
796          * Unlinks land-line data with current contact
797          * <p>
798          * @return Redirect outcome
799          */
800         public String unlinkLandLineContactData () {
801                 // Is all data set
802                 if (this.beanHelper.getLandLineNumber() == null) {
803                         // Not set, throw NPE
804                         throw new NullPointerException("this.beanHelper.landLineNumber is null"); //NOI18N
805                 } else if (this.beanHelper.getLandLineNumber().getPhoneId() == null) {
806                         // Throw NPE again
807                         throw new NullPointerException("this.beanHelper.landLineNumber.phoneId is null"); //NOI18N
808                 } else if (this.beanHelper.getLandLineNumber().getPhoneId() < 1) {
809                         // Invalid number
810                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.landLineNumber.phoneId={0} is not valid", this.beanHelper.getLandLineNumber().getPhoneId())); //NOI18N
811                 } else if (this.beanHelper.getLandLineNumber().getPhoneNumber() == null) {
812                         // Throw NPE again
813                         throw new NullPointerException("this.beanHelper.landLineNumber.phoneNumber is null"); //NOI18N
814                 } else if (this.beanHelper.getLandLineNumber().getPhoneNumber() < 1) {
815                         // Throw it again ...
816                         throw new NullPointerException(MessageFormat.format("this.beanHelper.landLineNumber.phoneNumber={0} is not valid.", this.beanHelper.getLandLineNumber().getPhoneNumber())); //NOI18N
817                 } else if (this.beanHelper.getContact() == null) {
818                         // ... and throw again
819                         throw new NullPointerException("this.beanHelper.contact is null"); //NOI18N
820                 } else if (this.beanHelper.getContact().getContactId() == null) {
821                         // ... and again ...
822                         throw new NullPointerException("this.beanHelper.contact.contactId is null"); //NOI18N
823                 } else if (this.beanHelper.getContact().getContactId() < 1) {
824                         // Invalid id number
825                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.contact.contactId={0} is invalid.", this.beanHelper.getContact().getContactId())); //NOI18N
826                 }
827
828                 // Init contact instance
829                 Contact updatedContact;
830
831                 try {
832                         // Unlink it and return contact without landLine instance
833                         updatedContact = this.adminPhoneBean.unlinkLandLineDataFromContact(this.beanHelper.getContact(), this.beanHelper.getLandLineNumber());
834                 } catch (final PhoneNumberNotLinkedException ex) {
835                         // Did not work
836                         this.showFacesMessage("form_unlink_contact_landLine:landLineNumberId", ex); //NOI18N
837                         return ""; //NOI18N
838                 }
839
840                 // Fire event
841                 this.landLineNumberUnlinkedEvent.fire(new AdminUnlinkedLandLineNumberEvent(updatedContact, this.beanHelper.getLandLineNumber()));
842
843                 // All fine here
844                 return "admin_show_contact"; //NOI18N
845         }
846
847         /**
848          * Unlinks mobile data with current contact
849          * <p>
850          * @return Redirect outcome
851          */
852         public String unlinkMobileContactData () {
853                 // Is all data set
854                 if (this.beanHelper.getMobileNumber() == null) {
855                         // Not set, throw NPE
856                         throw new NullPointerException("this.beanHelper.mobileNumber is null"); //NOI18N
857                 } else if (this.beanHelper.getMobileNumber().getPhoneId() == null) {
858                         // Throw NPE again
859                         throw new NullPointerException("this.beanHelper.mobileNumber.phoneId is null"); //NOI18N
860                 } else if (this.beanHelper.getMobileNumber().getPhoneId() < 1) {
861                         // Invalid number
862                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.mobileNumber.phoneId={0} is not valid", this.beanHelper.getMobileNumber().getPhoneId())); //NOI18N
863                 } else if (this.beanHelper.getMobileNumber().getMobileProvider() == null) {
864                         // Throw NPE
865                         throw new NullPointerException("this.beanHelper.mobileNumber.mobileProvider is null"); //NOI18N
866                 } else if (this.beanHelper.getMobileNumber().getMobileProvider().getProviderId() == null) {
867                         // ... throw again
868                         throw new NullPointerException("this.beanHelper.mobileNumber.mobileProvider.providerId is null"); //NOI18N
869                 } else if (this.beanHelper.getMobileNumber().getMobileProvider().getProviderId() < 1) {
870                         // Id not valid
871                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.mobileNumber.mobileProvider.providerId={0} is not valid.", this.beanHelper.getMobileNumber().getMobileProvider().getProviderId())); //NOI18N
872                 } else if (this.beanHelper.getMobileNumber().getPhoneNumber() == null) {
873                         // Throw NPE again
874                         throw new NullPointerException("this.beanHelper.mobileNumber.phoneNumber is null"); //NOI18N
875                 } else if (this.beanHelper.getMobileNumber().getPhoneNumber() < 1) {
876                         // Throw it again ...
877                         throw new NullPointerException(MessageFormat.format("this.beanHelper.mobileNumber.phoneNumber={0} is not valid.", this.beanHelper.getMobileNumber().getPhoneNumber())); //NOI18N
878                 } else if (this.beanHelper.getContact() == null) {
879                         // ... and throw again
880                         throw new NullPointerException("this.beanHelper.contact is null"); //NOI18N
881                 } else if (this.beanHelper.getContact().getContactId() == null) {
882                         // ... and again ...
883                         throw new NullPointerException("this.beanHelper.contact.contactId is null"); //NOI18N
884                 } else if (this.beanHelper.getContact().getContactId() < 1) {
885                         // Invalid id number
886                         throw new IllegalArgumentException(MessageFormat.format("this.beanHelper.contact.contactId={0} is invalid.", this.beanHelper.getContact().getContactId())); //NOI18N
887                 }
888
889                 // Init contact instance
890                 Contact updatedContact;
891
892                 try {
893                         // Unlink it and return contact without mobile instance
894                         updatedContact = this.adminPhoneBean.unlinkMobileDataFromContact(this.beanHelper.getContact(), this.beanHelper.getMobileNumber());
895                 } catch (final PhoneNumberNotLinkedException ex) {
896                         // Did not work
897                         this.showFacesMessage("form_unlink_contact_mobile:mobileNumberId", ex); //NOI18N
898                         return ""; //NOI18N
899                 }
900
901                 // Fire event
902                 this.mobileNumberUnlinkedEvent.fire(new AdminUnlinkedMobileNumberEvent(updatedContact, this.beanHelper.getMobileNumber()));
903
904                 // All fine here
905                 return "admin_show_contact"; //NOI18N
906         }
907
908         /**
909          * Clears this bean
910          */
911         private void clear () {
912                 // @TODO Clear all data
913         }
914
915 }