]> git.mxchange.org Git - addressbook-ejb.git/blob - src/java/org/mxchange/jcontacts/model/contact/AddressbookContactSessionBean.java
Updated copyright year
[addressbook-ejb.git] / src / java / org / mxchange / jcontacts / model / contact / AddressbookContactSessionBean.java
1 /*
2  * Copyright (C) 2016 - 2024 Free Software Foundation
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.jcontacts.model.contact;
18
19 import java.text.MessageFormat;
20 import java.util.List;
21 import javax.ejb.Stateless;
22 import javax.persistence.Query;
23 import org.mxchange.addressbook.enterprise.BaseAddressbookEnterpriseBean;
24
25 /**
26  * A contact EJB
27  * <p>
28  * @author Roland Häder<roland@mxchange.org>
29  */
30 @Stateless (name = "contact", description = "A bean handling contact data")
31 public class AddressbookContactSessionBean extends BaseAddressbookEnterpriseBean implements ContactSessionBeanRemote {
32
33         /**
34          * Serial number
35          */
36         private static final long serialVersionUID = 542_145_348_001L;
37
38         /**
39          * Default constructor
40          */
41         public AddressbookContactSessionBean () {
42                 // Call super constructor
43                 super();
44         }
45
46         @Override
47         @SuppressWarnings ("unchecked")
48         public List<Contact> fetchAllContacts () {
49                 // Log trace message
50                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.getAllContacts - CALLED!", this.getClass().getSimpleName())); //NOI18N
51
52                 // Create query instance
53                 final Query query = this.getEntityManager().createNamedQuery("AllContacts"); //NOI18N
54
55                 // Get list
56                 final List<Contact> contacts = query.getResultList();
57
58                 // Log trace message
59                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.getAllContacts: contacts.size()={1} - EXIT!", this.getClass().getSimpleName(), contacts.size())); //NOI18N
60
61                 // Return it
62                 return contacts;
63         }
64
65         @Override
66         public Contact updateContactData (final Contact contact, final boolean isMobileUnlinked, final boolean isLandlineUnlinked, final boolean isFaxUnlinked) {
67                 // Log trace message
68                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: contact={1},isMobileUnlinked={2},isLandlineUnlinked={3},isFaxUnlinked={4} - CALLED!", this.getClass().getSimpleName(), contact, isMobileUnlinked, isLandlineUnlinked, isFaxUnlinked)); //NOI18N
69
70                 // The contact instance must be valid
71                 if (null == contact) {
72                         // Throw NPE again
73                         throw new NullPointerException("contact is null"); //NOI18N
74                 } else if (contact.getContactId() == null) {
75                         // Throw NPE again
76                         throw new NullPointerException("contact.contactId is null"); //NOI18N
77                 } else if (contact.getContactId() < 1) {
78                         // Not valid
79                         throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
80                 }
81
82                 // Set updated timestamp
83                 this.setAllContactPhoneEntriesUpdated(contact, isMobileUnlinked, isLandlineUnlinked, isFaxUnlinked);
84
85                 // Merge mobile, land-line and fix
86                 final Contact detachedContact = this.mergeContactData(contact);
87
88                 // Trace message
89                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: detachedContact={1} - EXIT!", this.getClass().getSimpleName(), detachedContact)); //NOI18N
90
91                 // Return it
92                 return detachedContact;
93         }
94
95         @Override
96         public Contact updateContactData (final Contact contact) {
97                 // Log trace message
98                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: contact={1} - CALLED!", this.getClass().getSimpleName(), contact)); //NOI18N
99
100                 // The contact instance must be valid
101                 if (null == contact) {
102                         // Throw NPE again
103                         throw new NullPointerException("contact is null"); //NOI18N
104                 } else if (contact.getContactId() == null) {
105                         // Throw NPE again
106                         throw new NullPointerException("contact.contactId is null"); //NOI18N
107                 } else if (contact.getContactId() < 1) {
108                         // Not valid
109                         throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
110                 }
111
112                 // Is cell phone/land-line/fax number unlinked?
113                 final boolean isCellphoneUnlinked = (contact.getContactMobileNumber() == null);
114                 final boolean isLandLineUnlinked = (contact.getContactLandLineNumber() == null);
115                 final boolean isFaxUnlinked = (contact.getContactFaxNumber() == null);
116
117                 // Call other Method
118                 final Contact detachedContact = this.updateContactData(contact, isCellphoneUnlinked, isLandLineUnlinked, isFaxUnlinked);
119
120                 // Trace message
121                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: detachedContact={1} - EXIT!", this.getClass().getSimpleName(), detachedContact)); //NOI18N
122
123                 // Return it
124                 return detachedContact;
125         }
126
127 }