1 package tests.jfun.yan.interceptor; 6 7 import org.aopalliance.intercept.MethodInterceptor; 8 import org.aopalliance.intercept.MethodInvocation; 9 10 public class FooInterceptor implements MethodInterceptor { 11 public FooInterceptor() { 12 } 14 15 public Object invoke(MethodInvocation invocation) throws Throwable { 16 return invocation.proceed(); 18 } 19 20 } 21 | Popular Tags |