* @param descriptor The property descriptor of the annotated property.
* @param configuration The bean validation configuration to manipulate.
*/
protected void handleProprtyAnnotations(Annotation[] annotations, Class validatedClass, PropertyDescriptor descriptor, MutableBeanValidationConfiguration configuration) {
for (Annotation annotation : annotations) {
PropertyValidationAnnotationHandler handler = handlerRegistry.findPropertyHanlder(annotation, validatedClass, descriptor);
if (handler != null) {
handler.handleAnnotation(annotation, validatedClass, descriptor, configuration);
}
}
}