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 package org.jfox.ejb;7 8 /**9 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>10 */11 12 public class StatelessPoolableObject extends EJBPoolableObject {13 14 private boolean ejbCreated = false;15 16 public void ejbCreated() {17 ejbCreated = true;18 }19 20 public boolean isEjbCreated() {21 return ejbCreated;22 }23 24 public static void main(String [] args) {25 26 }27 }28 29