1 25 package org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.wrongspecification; 26 27 import javax.ejb.Stateless ; 28 import javax.interceptor.InvocationContext; 29 30 31 38 @Stateless  39 public class SLSBItfWithInterceptor implements ItfWithInterceptor{ 40 41 46 public Object doNothing(final InvocationContext invocationContext) { 47 return null; 48 } 49 50 54 public Integer getInteger() { 55 return VALUE; 56 } 57 58 } 59 | Popular Tags |