ClassValidationAnnotationHandler handler = handlerRegistry.findClassHanlder(annotation, clazz);
if (handler == null) {
logger.warn("No handler is defined for annotation '" + annotation.annotationType().getName() +
"'... Annotation will be ignored...");
} else {
handler.handleAnnotation(annotation, clazz, configuration);
}
}
}
protected void handleMethodAnnotations(Class clazz, MutableBeanValidationConfiguration configuration) {