Skip to content

Instantly share code, notes, and snippets.

@XakepSDK
Created August 6, 2018 17:07
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 XakepSDK/892ec3d886ec2cac7f44d93faa0868c1 to your computer and use it in GitHub Desktop.
Save XakepSDK/892ec3d886ec2cac7f44d93faa0868c1 to your computer and use it in GitHub Desktop.
import javax.validation.constraints.Email;
import javax.validation.constraints.Size;
public class SimpleDTO {
@Email
@Size
private String field;
public SimpleDTO() {
}
public String getField() {
return field;
}
public void setField(String field) {
this.field = field;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment