パッケージ org.springframework.aop

インターフェース IntroductionInterceptor

すべてのスーパーインターフェース:
AdviceDynamicIntroductionAdviceInterceptorMethodInterceptor
すべての既知の実装クラス:
DelegatePerTargetObjectIntroductionInterceptorDelegatingIntroductionInterceptor

public interface IntroductionInterceptor extends MethodInterceptor, DynamicIntroductionAdvice
AOP Alliance MethodInterceptor のサブインターフェース。これにより、インターセプターが追加のインターフェースを実装し、そのインターセプターを使用してプロキシ経由で利用できるようになります。これは、 導入と呼ばれる基本的な AOP の概念です。

導入部は多くの場合 mixin であり、Java の多重継承の多くのゴールを達成できる複合オブジェクトの構築を可能にします。

作成者:
Rod Johnson
関連事項: