org.springframework.aop.framework.adapter
Class MethodBeforeAdviceInterceptor

java.lang.Object
  extended byorg.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor
All Implemented Interfaces:
Advice, Interceptor, MethodInterceptor, Serializable

public final class MethodBeforeAdviceInterceptor
extends Object
implements MethodInterceptor, Serializable

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.

Used internally by the AOP framework: application developers should not need to use this class directly.

You can use this class to wrap Spring MethodBeforeAdvice implementations for use in other AOP frameworks supporting the AOP Alliance interfaces.

Author:
Rod Johnson
See Also:
Serialized Form

Constructor Summary
MethodBeforeAdviceInterceptor(MethodBeforeAdvice advice)
           
 
Method Summary
 Object invoke(MethodInvocation mi)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MethodBeforeAdviceInterceptor

public MethodBeforeAdviceInterceptor(MethodBeforeAdvice advice)
Method Detail

invoke

public Object invoke(MethodInvocation mi)
              throws Throwable
Specified by:
invoke in interface MethodInterceptor
Throws:
Throwable
See Also:
MethodInterceptor.invoke(org.aopalliance.intercept.MethodInvocation)


Copyright (C) 2003-2004 The Spring Framework Project.