Package com.liferay.portal.kernel.aop
Interface AopMethodInvocation
@ProviderType
public interface AopMethodInvocation
Provides immutable AOP method invocation to by used by
ChainableMethodAdvice
.- Author:
- Preston Crary
-
Method Summary
-
Method Details
-
getAdviceMethodContext
<T> T getAdviceMethodContext()- Returns:
- The cached context object defined in
ChainableMethodAdvice.createMethodContext(Class, Method, java.util.Map)
-
getMethod
Method getMethod()- Returns:
- the
Method
being advised for this invocation
-
getThis
Object getThis()- Returns:
- the
Object
being advised for this invocation
-
proceed
- Parameters:
arguments
- the arguments to use when invoking the method- Returns:
- the result of the underlying invocation chain
- Throws:
Throwable
-