Skip to content

Instantly share code, notes, and snippets.

@arnaudgeiser
Last active April 12, 2017 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnaudgeiser/6acf23e3f7005dda4bcf3ca70d941162 to your computer and use it in GitHub Desktop.
Save arnaudgeiser/6acf23e3f7005dda4bcf3ca70d941162 to your computer and use it in GitHub Desktop.
public class Person {
@Email
private String email;
@Size(min = 8)
private String firstname;
@NotNull
@Future
private Date future;
@Pattern(regexp="[0-9]{3}-[0-9]{8}")
private String phoneNumber;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment