Skip to content

Instantly share code, notes, and snippets.

@os890
Last active June 22, 2018 20:43
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 os890/c8da43d3d92ff84d5bbc6c79c2c77ac6 to your computer and use it in GitHub Desktop.
Save os890/c8da43d3d92ff84d5bbc6c79c2c77ac6 to your computer and use it in GitHub Desktop.
public class Person {
@Length(min = 1, max = 50, messageId = MY_LENGTH_MSG, propertyLabel = FIRST_NAME)
private String fName;
@Length(min = 2, max = 50, messageId = MY_LENGTH_MSG, propertyLabel = LAST_NAME)
private String lName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment