Package org.jboss.ejb.plugins

Source Code of org.jboss.ejb.plugins.StatelessSessionInstancePool

/*    */ package org.jboss.ejb.plugins;
/*    */
/*    */ import org.jboss.ejb.EnterpriseContext;
/*    */ import org.jboss.ejb.StatelessSessionEnterpriseContext;
/*    */
/*    */ public class StatelessSessionInstancePool extends AbstractInstancePool
/*    */ {
/*    */   protected void createService()
/*    */     throws Exception
/*    */   {
/* 40 */     super.createService();
/*    */
/* 43 */     this.reclaim = true;
/*    */   }
/*    */
/*    */   protected EnterpriseContext create(Object instance)
/*    */     throws Exception
/*    */   {
/* 49 */     return new StatelessSessionEnterpriseContext(instance, getContainer());
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.ejb.plugins.StatelessSessionInstancePool
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.ejb.plugins.StatelessSessionInstancePool

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.