2 * Copyright (C) 2016 Roland Haeder
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.
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.
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/>.
17 package org.mxchange.pizzaapplication.model.customer;
19 import java.text.MessageFormat;
20 import javax.ejb.Stateless;
21 import javax.persistence.NoResultException;
22 import javax.persistence.Query;
23 import org.mxchange.jcustomercore.exceptions.CustomerAlreadyRegisteredException;
24 import org.mxchange.jcustomercore.exceptions.CustomerNotFoundException;
25 import org.mxchange.jcustomercore.model.customer.Customer;
26 import org.mxchange.pizzaaplication.database.BasePizzaDatabaseBean;
29 * A stateless customer session bean (EJB)
31 * @author Roland Haeder<rhaeder@cho-time.de>
33 @Stateless (name = "customer", description = "A bean handling customer data")
34 public class PizzaCustomerSessionBean extends BasePizzaDatabaseBean implements PizzaCustomerSessionBeanRemote {
39 private static final long serialVersionUID = 15_624_759_104_372L;
42 public Customer fillCustomerData (final Customer customer) {
43 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. //NOI18N
47 public Customer findCustomerById (final Long customerId) throws CustomerNotFoundException {
49 this.getLoggerBeanLocal().logTrace(MessageFormat.format("findCustomerById: customerId={0} - CALLED!", customerId)); //NOI18N
51 // The parameter must be valid
52 if (null == customerId) {
54 throw new NullPointerException("customerId is null"); //NOI18N
55 } else if (customerId < 1) {
57 throw new IllegalArgumentException(MessageFormat.format("customerId={0} - is not valid", customerId)); //NOI18N
64 Query query = this.getEntityManager().createNamedQuery("SearchCustomerById", Customer.class); //NOI18N
67 query.setParameter("customerId", customerId); //NOI18N
72 customer = (Customer) query.getSingleResult();
74 // Debug message (success)
75 this.getLoggerBeanLocal().logDebug(MessageFormat.format("findCustomerById: Found customer={0} with customerId={1}", customer, customerId)); //NOI18N
76 } catch (final NoResultException ex) {
77 // Not found, throw again
78 throw new CustomerNotFoundException(customerId, ex);
82 this.getLoggerBeanLocal().logTrace(MessageFormat.format("findCustomerById; customer={0} - EXIT!", customer)); //NOI18N
84 // Return found instance
89 public boolean isReqistered (final Customer customer) {
91 this.getLoggerBeanLocal().logTrace(MessageFormat.format("isReqistered: customer={0} - CALLED!", customer)); //NOI18N
93 // Paramerter customer should be valid
94 if (null == customer) {
96 throw new NullPointerException("customer is null"); //NOI18N
97 } else if ((customer.getCustomerId() instanceof Long) && (customer.getCustomerId() > 0)) {
99 throw new IllegalArgumentException(MessageFormat.format("customer.customerId={0} is not allowed here.", customer.getCustomerId())); //NOI18N
100 } else if (customer.getCustomerContact() == null) {
102 throw new NullPointerException("customer.customerContact is null"); //NOI18N
103 } else if (customer.getCustomerNumber() == null) {
104 // Customer numbers should be set, at least generate one with CustomerUtils
105 throw new NullPointerException("customer.customerNumber is null"); //NOI18N
106 } else if (customer.getCustomerNumber().length() < PizzaAdminCustomerSessionBeanRemote.CUSTOMER_NUMBER_LENGTH) {
108 throw new IllegalArgumentException(MessageFormat.format("customer.customerNumber.length={0} is shorter than expected: {1}", customer.getCustomerNumber().length(), PizzaAdminCustomerSessionBeanRemote.CUSTOMER_NUMBER_LENGTH)); //NOI18N
111 // Init query instance
112 Query query = this.getEntityManager().createNamedQuery("SearchCustomerByNumber", Customer.class); //NOI18N
115 query.setParameter("customerNumber", customer.getCustomerNumber()); //NOI18N
117 // Default is not found
118 boolean isFound = false;
122 Customer dummy = (Customer) query.getSingleResult();
125 this.getLoggerBeanLocal().logDebug(MessageFormat.format("isReqistered: Customer {0} has number{1} and contact {2}", dummy.getCustomerId(), customer.getCustomerNumber(), customer.getCustomerContact().getContactId())); //NOI18N
129 } catch (final NoResultException ex) {
131 this.getLoggerBeanLocal().logDebug(MessageFormat.format("isReqistered: Not found: {0}", ex.getMessage())); //NOI18N
135 this.getLoggerBeanLocal().logTrace(MessageFormat.format("isReqistered: isFound={0} - EXIT!", isFound)); //NOI18N
142 public Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException {
143 throw new UnsupportedOperationException("Registration by guests is not supported with Pizza application."); //NOI18N