Skip to content

Instantly share code, notes, and snippets.

@php-coder
Created October 5, 2011 13:18
Show Gist options
  • Save php-coder/1264400 to your computer and use it in GitHub Desktop.
Save php-coder/1264400 to your computer and use it in GitHub Desktop.
Constraints list example
@Size.List({
@Size(min = COUNTRY_MIN_LENGTH, message = "{value.too-short}"),
@Size(max = COUNTRY_MAX_LENGTH, message = "{value.too-long}")
})
private String country;
value.too-long = Value is greater than allowable maximum of {min} characters
value.too-short = Value is less than allowable minimum of {max} characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment