Package org.hibernate.validator

Examples of org.hibernate.validator.Length


            Size size = field.getAnnotation(Size.class);
            formField.setMin(size.min());
            formField.setMax(size.max());
        }
        if (field.getAnnotation(Length.class) != null) {
            Length length = field.getAnnotation(Length.class);
            formField.setMin(length.min());
            formField.setMax(length.max());
        }
        if (field.getAnnotation(Pattern.class) != null) {
            formField.setRegExp(field.getAnnotation(Pattern.class).regex());
        }
    }
View Full Code Here


        } else if (annotationClass.equals(NotEmpty.class)) {
            return new RequiredClientValidator();
        } else if (annotationClass.equals(Email.class)) {
            return new EMailValidator();
        } else if (annotationClass.equals(Length.class)) {
            Length length = (Length) annotation;
            LengthValidator lengthValidator = new LengthValidator();
            lengthValidator.setMinimum(length.max());
            lengthValidator.setMinimum(length.min());
            LengthClientValidator lengthClientValidator = new LengthClientValidator();
            lengthClientValidator.setLengthValidator(lengthValidator);
            return lengthClientValidator;
        } else if (annotationClass.equals(Pattern.class)) {
            Pattern pattern = (Pattern) annotation;
View Full Code Here

TOP

Related Classes of org.hibernate.validator.Length

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.