KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > tutorial > clusteredentity > bean > EntityTest


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.clusteredentity.bean;
8
9 /**
10  * Comment
11  *
12  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
13  * @version $Revision$
14  */

15 public interface EntityTest
16 {
17    Customer createCustomer();
18
19    Customer findByCustomerId(Long JavaDoc id);
20    
21    boolean isCustomerInCache(Long JavaDoc id);
22    boolean isContactInCache(Long JavaDoc id);
23    boolean isCustomerContactsInCache(Long JavaDoc id);
24 }
25
Popular Tags