1 package com.atlassian.plugins.rest.validation;
2
3 import javax.validation.constraints.NotNull;
4 import javax.validation.constraints.Size;
5 import javax.xml.bind.annotation.XmlRootElement;
6
7 @XmlRootElement
8 public class Person {
9 @NotNull
10 @Size(min = 2, max = 10, message = "person.error.name.wrongSize")
11 private String name;
12
13 public String getName() {
14 return name;
15 }
16
17 public void setName(String name) {
18 this.name = name;
19 }
20 }