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.archivebyresource;8 9 import javax.ejb.Remote ;10 11 /**12 * Comment13 *14 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>15 * @version $Revision: 1.1 $16 */17 @Remote 18 public interface CustomerDAORemote19 {20 int createCustomer(String name);21 22 Customer findCustomer(int id);23 }24