org.springframework.aop.framework.adapter
Class AfterReturningAdviceInterceptor

java.lang.Object
  extended by org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor
All Implemented Interfaces:
java.io.Serializable, AfterAdvice

public class AfterReturningAdviceInterceptor
extends java.lang.Object
implements AfterAdvice, java.io.Serializable

Interceptor to wrap am AfterReturningAdvice. Used internally by the AOP framework; application developers should not need to use this class directly.

Author:
Rod Johnson
See Also:
Serialized Form

Field Summary
private  AfterReturningAdvice advice
           
 
Constructor Summary
AfterReturningAdviceInterceptor(AfterReturningAdvice advice)
          Create a new AfterReturningAdviceInterceptor for the given advice.
 
Method Summary
 java.lang.Object invoke(MethodInvocation mi)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

advice

private final AfterReturningAdvice advice
Constructor Detail

AfterReturningAdviceInterceptor

public AfterReturningAdviceInterceptor(AfterReturningAdvice advice)
Create a new AfterReturningAdviceInterceptor for the given advice.

Parameters:
advice - the AfterReturningAdvice to wrap
Method Detail

invoke

public java.lang.Object invoke(MethodInvocation mi)
                        throws java.lang.Throwable
Throws:
java.lang.Throwable