Interface AspectProvider<T extends Annotation>

Type Parameters:
T - The aspect annotation
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AspectProvider<T extends Annotation>
Provides the MethodInterceptor for the given aspect.
  • Method Summary

    Modifier and Type
    Method
    Description
    interceptor(Method method, T aspectAnnotation)
    Return the method interceptor to use for the given method and aspect annotation.
  • Method Details