Home | History | Annotate | Download | only in internal

Lines Matching defs:interceptors

56   private final ImmutableMap<Method, List<MethodInterceptor>> interceptors;
83 interceptors = ImmutableMap.of();
99 // Iterate over aspects and add interceptors for the methods they apply to
109 new Object[] { pair.method, methodAspect.interceptors() });
112 pair.addAll(methodAspect.interceptors());
119 interceptors = ImmutableMap.of();
140 ImmutableSet.copyOf(pair.interceptors).asList();
145 interceptors = interceptorsMapBuilder != null
151 * Returns the interceptors that apply to the constructed type.
154 return interceptors;
158 if (interceptors.isEmpty()) {
178 return new ProxyConstructor<T>(enhancer, injectionPoint, callbacks, interceptors);
186 List<MethodInterceptor> interceptors; // lazy
192 void addAll(List<MethodInterceptor> interceptors) {
193 if (this.interceptors == null) {
194 this.interceptors = Lists.newArrayList();
196 this.interceptors.addAll(interceptors);
200 return interceptors != null;