Searched refs:WebCustomer (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/src/java/persistence/
H A DWebCustomer.java42 * WebCustomer.java
62 * Entity class WebCustomer
69 @NamedQuery(name = "WebCustomer.findByCustId", query = "SELECT w FROM WebCustomer w WHERE w.custId = :custId"),
70 @NamedQuery(name = "WebCustomer.findByCity", query = "SELECT w FROM WebCustomer w WHERE w.city = :city"),
71 @NamedQuery(name = "WebCustomer.findByCustname", query = "SELECT w FROM WebCustomer w WHERE w.custname = :custname")
73 public class WebCustomer implements Serializable { class in inherits:Serializable
85 /** Creates a new instance of WebCustomer */
86 public WebCustomer() { method in class:WebCustomer
93 public WebCustomer(Integer custId) { method in class:WebCustomer
[all...]
/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/src/java/web/
H A DCustomerDetails.java96 WebCustomer customer = findByID(new Integer(customerNr));
141 protected WebCustomer findByID(Integer customerNr) {
142 WebCustomer customer=null;
147 customer = em.find(WebCustomer.class, customerNr);

Completed in 100 milliseconds