1 29 30 package com.caucho.aop; 31 32 import org.aopalliance.intercept.MethodInterceptor; 33 import org.aopalliance.intercept.MethodInvocation; 34 35 38 public class IdentityMethodInterceptor implements MethodInterceptor { 39 public Object invoke(MethodInvocation invocation) 40 throws Throwable 41 { 42 Object value = null; 43 44 value = invocation.proceed(); 45 46 return value; 47 } 48 } 49 | Popular Tags |