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.packaging.bean;8 9 /**10 * Comment11 *12 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>13 * @version $Revision: 1.1.2.2 $14 */15 public interface Session216 {17 Entity1 find1FromManager(int id);18 19 Entity1 find1FromFactory(int id);20 21 Entity2 find2FromManager(int id);22 23 Entity2 find2FromFactory(int id);24 }25