Package org.proxy4j.core.build
Interface MethodBinder<T>
-
- All Known Subinterfaces:
InterceptorBindingBuilder<T>,MethodBindingBuilder<T>
public interface MethodBinder<T>Binds a method to a chain of interceptors.
- Author:
- Brennan Spies
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodBindingBuilder<T>using(Method method, org.aopalliance.intercept.MethodInterceptor... interceptors)Binds the given method to a chain of interceptors.
-
-
-
Method Detail
-
using
MethodBindingBuilder<T> using(Method method, org.aopalliance.intercept.MethodInterceptor... interceptors)
Binds the given method to a chain of interceptors.- Parameters:
method- The method to bindinterceptors- The chain of interceptors- Returns:
- A builder for binding further methods
-
-