}
private void setInterceptorsForHttpMethodAction(Class<?> controllerClass, HttpMethod httpMethod, Method method,
Map<HttpMethod, List<Class<?>>> httpMethodActionInterceptorsMap) {
Annotation annot = method.getAnnotation(InterceptedBy.class);
if (annot != null) {
List<Class<?>> processedInterceptors = processInterceptors(annot, controllerClass, method);
httpMethodActionInterceptorsMap.put(httpMethod, Collections.unmodifiableList(processedInterceptors));