1 4 package com.tc.common.proxy; 5 6 import java.lang.reflect.Method ; 7 8 12 public interface MethodInvocationEvent { 13 14 17 public Method getMethod(); 18 19 23 public Object [] getArguments(); 24 25 28 public long getExecutionStartTime(); 29 30 33 public long getExecutionEndTime(); 34 35 39 public Throwable getException(); 40 41 48 public Object getReturnValue(); 49 50 53 public Object getInvokedObject(); 54 } | Popular Tags |