]> git.mxchange.org Git - pizzaservice-ejb.git/blob - src/java/org/mxchange/jphone/phonenumbers/phone/PizzaAdminContactPhoneSessionBean.java
Cleanup: (don't cherry-pick, repeat it all)
[pizzaservice-ejb.git] / src / java / org / mxchange / jphone / phonenumbers / phone / PizzaAdminContactPhoneSessionBean.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.jphone.phonenumbers.phone;
18
19 import de.chotime.jratecalc.database.BaseRateCalcDatabaseBean;
20 import java.text.MessageFormat;
21 import java.util.List;
22 import javax.ejb.Stateless;
23 import javax.persistence.NoResultException;
24 import javax.persistence.Query;
25 import org.mxchange.jcontacts.contact.Contact;
26 import org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote;
27 import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
28 import org.mxchange.pizzaaplication.database.BasePizzaDatabaseBean;
29
30 /**
31  * A session EJB for administrative contact's phone number purposes
32  * <p>
33  * @author Roland Haeder<roland@mxchange.org>
34  */
35 @Stateless (name = "admincontactphone", description = "Administrative bean handling contact's phone data")
36 public class PizzaAdminContactPhoneSessionBean extends BasePizzaDatabaseBean implements AdminContactsPhoneSessionBeanRemote {
37
38         /**
39          * Serial number
40          */
41         private static final long serialVersionUID = 189_217_561_460_237_108L;
42
43         @Override
44         @SuppressWarnings ("unchecked")
45         public List<Contact> allContacts (final DialableCellphoneNumber cellPhone) {
46                 // Trace message
47                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("allContacts: cellPhone={0} - CALLED!", cellPhone)); //NOI18N
48
49                 // The parameter should be valid
50                 if (null == cellPhone) {
51                         // Throw NPE
52                         throw new NullPointerException("cellPhone is null"); //NOI18N
53                 } else if (cellPhone.getPhoneId() == null) {
54                         // Phone id is null, means not persisted or correclty updated instance
55                         throw new NullPointerException("cellPhone.phoneId is null"); //NOI18N
56                 } else if (cellPhone.getPhoneId() < 1) {
57                         // Not valid id number
58                         throw new IllegalArgumentException(MessageFormat.format("cellPhone.phoneId={0} is not valid", cellPhone.getPhoneId())); //NOI18N
59                 }
60
61                 // Init list instance
62                 List<Contact> contacts = null;
63
64                 // Get query object from all found contact-cellphone links
65                 Query query = this.getEntityManager().createNamedQuery("AllContactsByCellphone", List.class); //NOI18N
66
67                 // Set parameter
68                 query.setParameter("cellPhone", cellPhone); //NOI18N
69
70                 // Try to find all
71                 try {
72                         contacts = query.getResultList();
73                 } catch (final NoResultException ex) {
74                         // No results found
75                 }
76
77                 // Trace message
78                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("allContacts: contacts={0} - EXIT!", contacts)); //NOI18N
79
80                 // Return list
81                 return contacts;
82         }
83
84 }