1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 7 package org.jfox.ejb;8 9 /**10 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>11 */12 13 public class StatefulObjectFactory extends EJBObjectFactory {14 15 public StatefulObjectFactory(Class classType, Bucket bucket) throws Exception {16 super(classType, bucket);17 }18 19 public static void main(String [] args) {20 21 }22 }23