public interface

AfterReturningAdvice

implements AfterAdvice
org.springframework.aop.AfterReturningAdvice
Known Indirect Subclasses

Class Overview

After returning advice is invoked only on normal method return, not if an exception is thrown. Such advice can see the return value, but cannot change it.

Summary

Public Methods
abstract void afterReturning(Object returnValue, Method method, Object[] args, Object target)
Callback after a given method successfully returned.

Public Methods

public abstract void afterReturning (Object returnValue, Method method, Object[] args, Object target)

Callback after a given method successfully returned.

Parameters
returnValue the value returned by the method, if any
method method being invoked
args arguments to the method
target target of the method invocation. May be null.
Throws
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.