1 22 package org.jboss.ejb3.test.regression.ejbthree376; 23 24 import javax.interceptor.AroundInvoke; 25 import javax.interceptor.InvocationContext; 26 27 32 public abstract class AbstractBaseClassWithInterceptor 33 { 34 35 @AroundInvoke 36 public Object intercept(InvocationContext ctx) throws Exception  37 { 38 System.out.println("TestInterceptor intercepting"); 39 StatusBean.beanIntercepted = true; 40 return ctx.proceed(); 41 } 42 43 } 44 | Popular Tags |