Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/a9564ee50a0e81d5f584cdd9b2fbb80d to your computer and use it in GitHub Desktop.
Save dvallin/a9564ee50a0e81d5f584cdd9b2fbb80d to your computer and use it in GitHub Desktop.
public class AddTask {
@NotBlank(message = "Task title must not be blank!")
public final String title;
public AddTask(@JsonProperty("title") final String title) {
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment