Package org.springmodules.validation.bean.conf.loader.annotation.handler

Examples of org.springmodules.validation.bean.conf.loader.annotation.handler.PropertyValidationAnnotationHandler


     * @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);
            }
        }
    }
View Full Code Here


     * @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);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.springmodules.validation.bean.conf.loader.annotation.handler.PropertyValidationAnnotationHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.