1 25 package org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.simpleentry.wrongspecification; 26 27 import javax.annotation.Resource; 28 import javax.ejb.Stateless ; 29 30 import org.objectweb.easybeans.tests.common.ejbs.base.ItfOneMethod01; 31 32 33 39 @Stateless  40 public class SLSBStaticEntry implements ItfOneMethod01{ 41 42 45 @SuppressWarnings ("unused") 46 @Resource(name = "lngSLSBSimpleEnvEntriesWithStaticAttribute") 47 private static long lngInjection; 48 49 53 public boolean getBool(){ 54 return false; 55 } 56 } 57 | Popular Tags |