protected <T> LinkedList<T> getInterceptors(Class<T> clazz) {
   InterceptorType interceptorType = InterceptorType.getInterceptorTypeFor(clazz);
   if (interceptorType == null) return null;
   return getInterceptors(interceptorType);
 }