From: Roland Häder Date: Thu, 28 Apr 2016 08:29:34 +0000 (+0200) Subject: added named query for finding customers by id numbers. Normally this is used when... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7d1b087889a3b802fa68a07b8a353f57b26f9276;p=pizzaservice-core.git added named query for finding customers by id numbers. Normally this is used when a converter calls the findSomethingById() method of an EJB. Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/pizzaaplication/model/customer/PizzaCustomer.java b/src/org/mxchange/pizzaaplication/model/customer/PizzaCustomer.java index 1969920..35b9b6e 100644 --- a/src/org/mxchange/pizzaaplication/model/customer/PizzaCustomer.java +++ b/src/org/mxchange/pizzaaplication/model/customer/PizzaCustomer.java @@ -54,7 +54,9 @@ import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus; ) @NamedQueries ( { - @NamedQuery (name = "AllCustomers", query = "SELECT c FROM customer AS c ORDER BY c.customerId ASC") + @NamedQuery (name = "AllCustomers", query = "SELECT c FROM customer AS c ORDER BY c.customerId ASC"), + @NamedQuery (name = "SearchCustomerByNumber", query = "SELECT c FROM customer AS c WHERE c.customerNumber = :customerNumber"), + @NamedQuery (name = "SearchCustomerById", query = "SELECT c FROM customer AS c WHERE c.customerId = :customerId") } ) @SuppressWarnings ("PersistenceUnitPresent")