Class AfterReturningAdviceInterceptor
java.lang.Object
org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor
- All Implemented Interfaces:
Serializable,Advice,Interceptor,MethodInterceptor,AfterAdvice
public class AfterReturningAdviceInterceptor
extends Object
implements MethodInterceptor, AfterAdvice, Serializable
Interceptor to wrap an
AfterReturningAdvice.
Used internally by the AOP framework; application developers should not need
to use this class directly.- Author:
- Rod Johnson
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new AfterReturningAdviceInterceptor for the given advice. -
Method Summary
Modifier and TypeMethodDescriptionImplement this method to perform extra treatments before and after the invocation.
-
Constructor Details
-
AfterReturningAdviceInterceptor
Create a new AfterReturningAdviceInterceptor for the given advice.- Parameters:
advice- the AfterReturningAdvice to wrap
-
-
Method Details
-
invoke
Description copied from interface:MethodInterceptorImplement this method to perform extra treatments before and after the invocation. Polite implementations would certainly like to invokeJoinpoint.proceed().- Specified by:
invokein interfaceMethodInterceptor- Parameters:
mi- the method invocation joinpoint- Returns:
- the result of the call to
Joinpoint.proceed(); might be intercepted by the interceptor - Throws:
Throwable- if the interceptors or the target object throws an exception
-