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()
MethodInvocation
getMethod
in interface MethodInvocation
public Object[] getArguments()
MethodInvocation
getArguments
in interface MethodInvocation
public Object proceed() throws Throwable
MethodInvocation
The implementation and the semantics of this method depends on the actual joinpoint type (see the children interfaces).
proceed
in interface MethodInvocation
Throwable
- if the joinpoint throws an exception.public Object getThis()
MethodInvocation
For instance, the target object for an invocation.
getThis
in interface MethodInvocation
Copyright © 2020. All rights reserved.