org.springframework.aop
Interface Advisor

All Known Subinterfaces:
IntroductionAdvisor, PointcutAdvisor
All Known Implementing Classes:
DefaultIntroductionAdvisor, DefaultPointcutAdvisor, DynamicMethodMatcherPointcutAdvisor, NameMatchMethodPointcutAdvisor, RegexpMethodPointcutAdvisor, StaticMethodMatcherPointcutAdvisor

public interface Advisor

Base interface holding AOP advice (action to take at a joinpoint) and a filter determining the applicability of the advice (such as a pointcut). This interface is not for use by Spring users, but to allow for commonality in support for different types of advice.

Spring AOP is based around around advice delivered via method interception, compliant with the AOP Alliance interception API. The Advisor interface allows support for different types of advice, such as before and after advice, which need not be implemented using interception.

Version:
$Id: Advisor.java,v 1.6 2004/03/19 16:54:36 johnsonr Exp $
Author:
Rod Johnson

Method Summary
 org.aopalliance.aop.Advice getAdvice()
          Return the advice part of this aspect.
 boolean isPerInstance()
          Return whether this advice is associated with a particular instance (for example, creating a mixin) or is it shared with all instances of the advised class obtained from the same Spring bean factory.
 

Method Detail

isPerInstance

public boolean isPerInstance()
Return whether this advice is associated with a particular instance (for example, creating a mixin) or is it shared with all instances of the advised class obtained from the same Spring bean factory. Note that this method is not currently used by the framework. Use singleton/prototype bean definitions or appropriate programmatic proxy creation to ensure that Advisors have the correct lifecycle model.


getAdvice

public org.aopalliance.aop.Advice getAdvice()
Return the advice part of this aspect. An advice may be an interceptor, a throws advice, before advice etc.
Spring supports user-defined advice, via the org.springframework.aop.adapter package.

Returns:
the advice that should apply if the pointcut matches


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