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