Interface AdvisedSupportListener
public interface AdvisedSupportListener
Listener to be registered on
ProxyCreatorSupport
objects
Allows for receiving callbacks on activation and change of advice.- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
activated
(AdvisedSupport advised) Invoked when the first proxy is created.void
adviceChanged
(AdvisedSupport advised) Invoked when advice is changed after a proxy is created.
-
Method Details
-
activated
Invoked when the first proxy is created.- Parameters:
advised
- the AdvisedSupport object
-
adviceChanged
Invoked when advice is changed after a proxy is created.- Parameters:
advised
- the AdvisedSupport object
-