1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.tutorial.dependent.bean;8 9 import java.util.List ;10 11 public interface CustomerDAO12 {13 int create(String first, String last, String street, String city, String state, String zip);14 15 Customer find(int id);16 17 List findByLastName(String name);18 19 void merge(Customer c);20 }21