Interface MethodInvocation
public interface MethodInvocation
3rd-party API independent representation of a method invocation. This is needed so Shiro can support other
MethodInvocation instances from other AOP frameworks/APIs.
- Since:
- 0.1
-
Method Summary
Modifier and TypeMethodDescriptionObject[]Returns the (possibly null) arguments to be supplied to the method invocation.Returns the actualMethodto be invoked.getThis()Returns the object that holds the current join point's static part.proceed()Continues the method invocation chain, or if the last in the chain, the method itself.
-
Method Details
-
proceed
-
getMethod
-
getArguments
Object[] getArguments()Returns the (possibly null) arguments to be supplied to the method invocation.- Returns:
- the (possibly null) arguments to be supplied to the method invocation.
-
getThis
-