1 25 26 package org.objectweb.jonas_ejb.container; 27 28 import org.objectweb.jonas_ejb.deployment.api.EntityDesc; 29 30 import org.objectweb.util.monolog.api.BasicLevel; 31 32 38 public abstract class JEntityLocalHome extends JLocalHome { 39 40 45 public JEntityLocalHome(EntityDesc dd, JEntityFactory bf) { 46 super(dd, bf); 47 if (TraceEjb.isDebugIc()) { 48 TraceEjb.interp.log(BasicLevel.DEBUG, ""); 49 } 50 } 51 52 57 61 66 public abstract JEntityLocal createLocalObject(); 67 68 } | Popular Tags |