1 25 package org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.wrongspecification; 26 27 import javax.interceptor.AroundInvoke; 28 import javax.interceptor.InvocationContext; 29 30 31 32 39 public interface ItfWithInterceptor { 40 41 44 Integer VALUE = new Integer (1); 45 46 51 @AroundInvoke 52 Object doNothing(InvocationContext invocationContext); 53 54 58 Integer getInteger(); 59 } 60 | Popular Tags |