1 22 package org.jboss.ejb3.test.regression.ejbthree625; 23 24 import javax.interceptor.AroundInvoke; 25 import javax.interceptor.InvocationContext; 26 27 33 public class StupidInterceptor 34 { 35 public static int count = 0; 36 @AroundInvoke 37 public Object intercept(InvocationContext ic) throws Exception  38 { 39 count++; 40 return ic.proceed(); 41 } 42 } 43 | Popular Tags |