Searched defs:customerNr (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/src/java/web/
H A DCustomerDetails.java93 String customerNr = request.getParameter("customer_nr");
94 if((customerNr != null) && !(customerNr.equals(""))) {
96 WebCustomer customer = findByID(new Integer(customerNr));
98 out.println("Customer's info for nr. " + customerNr + ": " + customer.getCustname());
141 protected WebCustomer findByID(Integer customerNr) { argument
147 customer = em.find(WebCustomer.class, customerNr);

Completed in 1030 milliseconds