public interface Interceptor
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Object | afterInvoke(java.lang.Object object,
           java.lang.String methodName,
           java.lang.Object[] arguments,
           java.lang.Object result)This code is executed after the method is optionally called. | 
| java.lang.Object | beforeInvoke(java.lang.Object object,
            java.lang.String methodName,
            java.lang.Object[] arguments)This code is executed before the method is optionally called. | 
| boolean | doInvoke() | 
java.lang.Object beforeInvoke(java.lang.Object object,
                              java.lang.String methodName,
                              java.lang.Object[] arguments)
object - receiver object for the method callmethodName - name of the method to callarguments - arguments to the method calljava.lang.Object afterInvoke(java.lang.Object object,
                             java.lang.String methodName,
                             java.lang.Object[] arguments,
                             java.lang.Object result)
object - receiver object for the called methodmethodName - name of the called methodarguments - arguments to the called methodresult - result of the executed method call or result of beforeInvoke if method was not calledboolean doInvoke()