public class InnerAopInvocation extends Object implements MethodInvocation
| Constructor and Description |
|---|
InnerAopInvocation(String targetMethodDesc,
Method targetMethod,
Method proxyMethod,
Object targetObject,
Object[] methodParams) |
| Modifier and Type | Method and Description |
|---|---|
Object[] |
getArguments()
Get the arguments as an array object.
|
Method |
getMethod()
Gets the method being called.
|
Object |
getThis()
Returns the object that holds the current join point's static part.
|
Object |
proceed()
Proceeds to the next interceptor in the chain.
|
public Method getMethod()
MethodInvocationgetMethod in interface MethodInvocationpublic Object[] getArguments()
MethodInvocationgetArguments in interface MethodInvocationpublic Object proceed() throws Throwable
MethodInvocationThe implementation and the semantics of this method depends on the actual joinpoint type (see the children interfaces).
proceed in interface MethodInvocationThrowable - if the joinpoint throws an exception.public Object getThis()
MethodInvocationFor instance, the target object for an invocation.
getThis in interface MethodInvocationCopyright © 2020. All rights reserved.