AfterReturningAdvice is invoked after a join point, this advice has been
woven-into, has been invoked and returned successfully with a return value, not if
it threw an exception.
public function execute(joinPoint:JoinPoint, returnValue):Void
Executes the actions that were woven-in the given joinPoint.
If you use the proxy returned by the AbstractAfterReturningAdvice#getProxy method to overwrite the actual join point, this method is invoked after the join point was invoked and returned successfully with a return value.
joinPoint | the join point this advice was woven into |
returnValue | the result of the execution of the join point |