KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > tutorial > archive > CustomerDAOLocal


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.tutorial.archive;
8
9 import javax.ejb.Local JavaDoc;
10
11 /**
12  * Comment
13  *
14  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
15  * @version $Revision: 1.1 $
16  */

17 @Local JavaDoc
18 public interface CustomerDAOLocal
19 {
20    int createCustomer(String JavaDoc name);
21
22    Customer findCustomer(int id);
23 }
24
Popular Tags