Package org.jboss.ejb.plugins

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

/*    */ package org.jboss.ejb.plugins;
/*    */
/*    */ import org.jboss.ejb.EnterpriseContext;
/*    */ import org.jboss.ejb.StatefulSessionEnterpriseContext;
/*    */
/*    */ public class StatefulSessionInstancePool extends AbstractInstancePool
/*    */ {
/*    */   public synchronized void free(EnterpriseContext ctx)
/*    */   {
/* 39 */     discard(ctx);
/*    */   }
/*    */
/*    */   protected EnterpriseContext create(Object instance)
/*    */     throws Exception
/*    */   {
/* 46 */     return new StatefulSessionEnterpriseContext(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.StatefulSessionInstancePool
* JD-Core Version:    0.6.0
*/
TOP

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

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.