Interface AspectDecorator
-
- All Known Implementing Classes:
AspectDecoratorImpl
public interface AspectDecorator
A decorator used to create an interceptor that delegates each method's invocation to anMethodAdvice
for advice. Advice can inspect or change method parameters, inspect or change the method's return value, and inspect and change thrown exceptions (checked and unchecked).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> AspectInterceptorBuilder<T>
createBuilder(Class<T> serviceInterface, T delegate, String description)
Creates a builder that can be used to create the interceptor.<T> AspectInterceptorBuilder<T>
createBuilder(Class<T> serviceInterface, T delegate, AnnotationAccess annotationAccess, String description)
Creates a builder that can be used to create the interceptor.
-
-
-
Method Detail
-
createBuilder
<T> AspectInterceptorBuilder<T> createBuilder(Class<T> serviceInterface, T delegate, String description)
Creates a builder that can be used to create the interceptor. This is used when only some of the methods need to be advised, or when different methods need to receive different advice, or when multiple advice is to be applied.- Type Parameters:
T
- the type of the service interface.- Parameters:
serviceInterface
- defines the interface of the interceptor and the delegatedelegate
- the object on which methods will be invokesdescription
- used as the toString() of the interceptor unless toString() is part of the service interface- Returns:
- a builder that can be used to generate the final interceptor
-
createBuilder
<T> AspectInterceptorBuilder<T> createBuilder(Class<T> serviceInterface, T delegate, AnnotationAccess annotationAccess, String description)
Creates a builder that can be used to create the interceptor. This is used when only some of the methods need to be advised, or when different methods need to receive different advice, or when multiple advice is to be applied.- Type Parameters:
T
- the type of the service interface.- Parameters:
serviceInterface
- defines the interface of the interceptor and the delegatedelegate
- the object on which methods will be invokesannotationAccess
- provides access to combined annotations of the underlying service and service interfacedescription
- used as the toString() of the interceptor unless toString() is part of the service interface- Returns:
- a builder that can be used to generate the final interceptor
-
-