Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active February 5, 2018 22:36
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 jwalgemoed/b305451ae52bcee9aa91aa17617bc066 to your computer and use it in GitHub Desktop.
Save jwalgemoed/b305451ae52bcee9aa91aa17617bc066 to your computer and use it in GitHub Desktop.
public class Person {
private String firstName;
private String lastName;
public Person(
@Length(min = 1,max = 20) @NotNull String firstName,
@Length(min = 1,max = 20) @NotNull String lastName) {
// stuff removed
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment