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 Session116 {17 int create1FromManager();18 19 int create1FromFactory();20 21 int create2FromManager();22 23 int create2FromFactory();24 }25