public interface AfterReturningAdvice extends AfterAdvice
MethodBeforeAdvice, 
ThrowsAdvice| Modifier and Type | Method and Description | 
|---|---|
| void | afterReturning(Object returnValue,
              Method method,
              Object[] args,
              Object target)Callback after a given method successfully returned. | 
void afterReturning(@Nullable
                    Object returnValue,
                    Method method,
                    Object[] args,
                    @Nullable
                    Object target)
             throws Throwable
returnValue - the value returned by the method, if anymethod - method being invokedargs - arguments to the methodtarget - target of the method invocation. May be null.Throwable - if this object wishes to abort the call.
 Any exception thrown will be returned to the caller if it's
 allowed by the method signature. Otherwise the exception
 will be wrapped as a runtime exception.