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 SLSBStaticMethodEntry implements ItfOneMethod01{ 41 42 45 @SuppressWarnings ("unused") 46 private static long lngInjection; 47 48 52 @Resource 53 public static void setLngInjection(final long value){ 54 lngInjection = value; 55 } 56 57 61 public boolean getBool(){ 62 return false; 63 } 64 } 65 | Popular Tags |