1 /*2 * JBoss, the OpenSource EJB server3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.tutorial.interceptor.bean;8 9 import javax.ejb.AroundInvoke;10 import javax.ejb.InvocationContext;11 12 public class OtherInterceptor13 {14 @AroundInvoke15 public Object intercept(InvocationContext ctx) throws Exception 16 {17 System.out.println("*** OtherInterceptor intercepting");18 return ctx.proceed();19 }20 21 }22