Interface AspectMethodInvocation
public interface AspectMethodInvocation
This class allows you to define the behavior of an aspect on a specific method.
You can add some code before running the method, or after.
You can catch some exceptions and log them...
You can ever change the result of a method.
- Author:
- pchretien
-
Method Summary
-
Method Details
-
getMethod
Method getMethod()- Returns:
- method concerned by the advice
-
proceed
- Parameters:
args- Args- Returns:
- the result of the method.
-