1 7 package org.jboss.test.aop.regression.jbaop206inheritadvised; 8 9 import org.jboss.aop.advice.Interceptor; 10 import org.jboss.aop.joinpoint.Invocation; 11 12 18 public class TestInterceptor implements Interceptor 19 { 20 public static boolean intercepted; 21 public String getName() 22 { 23 return "TestInterceptor"; 24 } 25 26 public Object invoke(Invocation invocation) throws Throwable  27 { 28 intercepted = true; 29 return invocation.invokeNext(); 30 } 31 32 } 33 | Popular Tags |