org.springframework.aop.framework
Interface AdvisedSupportListener

All Known Subinterfaces:
AdvisorChainFactory
All Known Implementing Classes:
HashMapCachingAdvisorChainFactory, ProxyFactoryBean

public interface AdvisedSupportListener

Listener to be registered on AdvisedSupport objects. Allows for receiving callbacks on activation and change of advice.

Author:
Rod Johnson
See Also:
AdvisedSupport.addListener(org.springframework.aop.framework.AdvisedSupportListener)

Method Summary
 void activated(AdvisedSupport advisedSupport)
          Invoked when the first proxy is created.
 void adviceChanged(AdvisedSupport advisedSupport)
          Invoked when advice is changed after a proxy is created.
 

Method Detail

activated

void activated(AdvisedSupport advisedSupport)
Invoked when the first proxy is created.

Parameters:
advisedSupport - the AdvisedSupport object

adviceChanged

void adviceChanged(AdvisedSupport advisedSupport)
Invoked when advice is changed after a proxy is created.

Parameters:
advisedSupport - the AdvisedSupport object


Copyright (c) 2002-2007 The Spring Framework Project.