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 MDBPoolableObject extends EJBPoolableObject {13 14 private boolean ejbCreated = false;15 16 // public StatelessEJBPoolableObject(EnterpriseBean instance) {17 // super(instance);18 // }19 20 public void ejbCreated() {21 ejbCreated = true;22 }23 24 public boolean isEjbCreated() {25 return ejbCreated;26 }27 28 public static void main(String [] args) {29 30 }31 }32 33