Skip to content

Instantly share code, notes, and snippets.

@ddanielsantos
Created February 1, 2023 20:30
Show Gist options
  • Save ddanielsantos/e4757fe11cf183528249285157c45bb8 to your computer and use it in GitHub Desktop.
Save ddanielsantos/e4757fe11cf183528249285157c45bb8 to your computer and use it in GitHub Desktop.
class CommentForm implements Serializable {
private String value;
@NotEmpty(message = "please provide a value dude")
public String getValue() {
return this.value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment