1 25 package org.objectweb.easybeans.tests.common.ejbs.base; 26 27 import javax.ejb.Remote ; 28 import javax.ejb.Stateless ; 29 30 import org.objectweb.easybeans.log.JLog; 31 import org.objectweb.easybeans.log.JLogFactory; 32 33 34 40 @Stateless (name="EJBInjectionBean") 41 @Remote (ItfOneMethod01.class) 42 public class EJBInjectionBean implements ItfOneMethod01{ 43 44 47 private JLog logger = JLogFactory.getLog(EJBInjectionBean.class); 48 49 52 public boolean getBool(){ 53 logger.debug("=== SIMPLE BEAN ==="); 54 return true; 55 } 56 } 57 | Popular Tags |