Skip to content

Instantly share code, notes, and snippets.

@frekele
Created December 1, 2020 07:28
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 frekele/fb299752273c2ccb160ecb784b65a4eb to your computer and use it in GitHub Desktop.
Save frekele/fb299752273c2ccb160ecb784b65a4eb to your computer and use it in GitHub Desktop.
public class Team {
@NotNull(groups = {OnCreate.class, OnUpdate.class})
@NotEmpty(groups = {OnCreate.class, OnUpdate.class})
private String name;
@NotNull(groups = {OnCreate.class, OnUpdate.class})
private ConfigTeam config;
@NotNull
@Size(min = 2, max = 14)
private String description;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment