Interface AspectInterceptorBuilder<T>

All Superinterfaces:
AnnotationAccess, MethodAdviceReceiver
All Known Implementing Classes:
AbtractAspectInterceptorBuilder, AspectInterceptorBuilderImpl

A builder may be obtained from the AspectDecorator and allows more controlled creation of the created interceptor; it allows different methods to be given different advice, and allows methods to be omitted (in which case the method invocation passes through without advice).
  • Method Details

    • build

      T build()
      Builds and returns the interceptor. Any methods that have not been advised will become "pass thrus".
      Returns:
      the interceptor instance.