Regarding the Interceptor documentation?
Hi All,
Quote:
/**
* Interceptor to wrap a MethodBeforeAdvice. In future we may also offer a more
* efficient alternative solution in cases where there is no interception advice
* and therefore no need to create a MethodInvocation object.
*
* <p>Used internally by the AOP framework: application developers should not need
* to use this class directly.
*
* @author Rod Johnson
* @version $Id: MethodBeforeAdviceInterceptor.java,v 1.3 2004/04/01 15:35:47 jhoeller Exp $
*/
final class MethodBeforeAdviceInterceptor implements MethodInterceptor {
Refferring to above quote what does the following statement mean , I can't understand the concept of removal of interception layer in Proxybased AOP .
Quote:
In future we may also offer a more
* efficient alternative solution in cases where there is no interception advice
* and therefore no need to create a MethodInvocation object.
Regards
Vicky