View Javadoc

1   package com.atlassian.plugins.rest.validation;
2   
3   import javax.xml.bind.annotation.XmlRootElement;
4   
5   @XmlRootElement
6   public class PersonResponse
7   {
8       private String name;
9   
10      public String getName()
11      {
12          return name;
13      }
14  
15      public void setName(String name)
16      {
17          this.name = name;
18      }
19  }