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.clusteredentity.bean;8 9 /**10 * Comment11 *12 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>13 * @version $Revision$14 */15 public interface EntityTest16 {17 Customer createCustomer();18 19 Customer findByCustomerId(Long id);20 21 boolean isCustomerInCache(Long id);22 boolean isContactInCache(Long id);23 boolean isCustomerContactsInCache(Long id);24 }25