org.devefx.validator.ValidationMessages.properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validator-web Show documentation
Show all versions of validator-web Show documentation
Jave Web Validator Framework
org.devefx.validator.constraints.AssertFalse.message = must be false
org.devefx.validator.constraints.AssertTrue.message = must be true
org.devefx.validator.constraints.DecimalMax.message = must be less than ${inclusive == true ? 'or equal to ' : ''}{maxValue}
org.devefx.validator.constraints.DecimalMin.message = must be greater than ${inclusive == true ? 'or equal to ' : ''}{minValue}
org.devefx.validator.constraints.Digits.message = numeric value out of bounds (<{maxIntegerLength} digits>.<{maxFractionLength} digits> expected)
org.devefx.validator.constraints.Email.message = not a well-formed email address
org.devefx.validator.constraints.EqualTo.message = must be equal to the value of '{name}'${ignoreCase == true ? ', ignoring case considerations' : ''}
org.devefx.validator.constraints.Future.message = must be in the future
org.devefx.validator.constraints.Length.message = length must be between {min} and {max}
org.devefx.validator.constraints.Max.message = must be less than or equal to {maxValue}
org.devefx.validator.constraints.Min.message = must be greater than or equal to {minValue}
org.devefx.validator.constraints.Mobile.message = not a well-formed mobile number
org.devefx.validator.constraints.NotBlank.message = may not be empty
org.devefx.validator.constraints.NotEmpty.message = may not be empty
org.devefx.validator.constraints.NotNull.message = may not be null
org.devefx.validator.constraints.Null.message = must be null
org.devefx.validator.constraints.Options.message = must be meet an constraint
org.devefx.validator.constraints.Past.message = must be in the past
org.devefx.validator.constraints.Regex.message = must match "{regexp}"
org.devefx.validator.constraints.Separator.message = after segmentation of the substring must meet the constraint
org.devefx.validator.constraints.Size.message = size must be between {min} and {max}
org.devefx.validator.constraints.URL.message = must be a valid URL
org.devefx.validator.constraints.multipart.ImageRatio.message = image ratio must be equal to {ratio}
org.devefx.validator.constraints.multipart.ImageSize.message = image width must be between {minWidth} and {maxWidth}, height must be between {minHeight} and {maxHeight}
org.devefx.validator.constraints.multipart.MultipartSize.message = multipart size must be between {min} and {max}