]> git.mxchange.org Git - addressbook-mailer-ejb.git/blob - src/java/org/mxchange/jphone/phonenumbers/phone/AddressbookAdminContactPhoneSessionBean.java
6f580b56a192546faac8694b284661187ddc1963
[addressbook-mailer-ejb.git] / src / java / org / mxchange / jphone / phonenumbers / phone / AddressbookAdminContactPhoneSessionBean.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 java.text.MessageFormat;
20 import java.util.List;
21 import javax.ejb.Stateless;
22 import javax.persistence.NoResultException;
23 import javax.persistence.Query;
24 import org.mxchange.jcontacts.contact.Contact;
25 import org.mxchange.jcontacts.contact.UserContact;
26 import org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote;
27 import org.mxchange.jcoreee.database.BaseDatabaseBean;
28 import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
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 = "An administrative bean handling contact's phone data")
36 public class AddressbookAdminContactPhoneSessionBean extends BaseDatabaseBean 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                 // The parameter should be valid
47                 if (null == cellPhone) {
48                         // Throw NPE
49                         throw new NullPointerException("cellPhone is null"); //NOI18N
50                 } else if (cellPhone.getPhoneId() == null) {
51                         // Phone id is null, means not persisted or correclty updated instance
52                         throw new NullPointerException("cellPhone.phoneId is null"); //NOI18N
53                 } else if (cellPhone.getPhoneId() < 1) {
54                         // Not valid id number
55                         throw new IllegalArgumentException(MessageFormat.format("cellPhone.phoneId={0} is not valid", cellPhone.getPhoneId())); //NOI18N
56                 }
57
58                 // Init list instance
59                 List<Contact> contacts = null;
60
61                 // Get query object from all found contact-cellphone links
62                 Query query = this.getEntityManager().createNamedQuery("AllContactsByCellphone", UserContact.class); //NOI18N
63
64                 // Set parameter
65                 query.setParameter("cellPhone", cellPhone); //NOI18N
66
67                 // Try to find all
68                 try {
69                         contacts = query.getResultList();
70                 } catch (final NoResultException ex) {
71                         // No results found
72                 }
73
74                 // Return list
75                 return contacts;
76         }
77
78 }