1 22 package org.jboss.ejb3.test.interceptors2; 23 24 import javax.ejb.EJB ; 25 import javax.interceptor.AroundInvoke; 26 import javax.interceptor.InvocationContext; 27 28 33 public class MixedClassInterceptor 34 { 35 @EJB  36 StatusRemote status; 37 38 @AroundInvoke 39 public Object intercept(InvocationContext ctx) throws Exception  40 { 41 System.out.println("MixedClassInterceptor intercepting!"); 42 status.addInterception(new Interception(this, "intercept")); 43 return ctx.proceed(); 44 } 45 46 } 47 | Popular Tags |