View Javadoc

1   package com.atlassian.plugins.rest.sample.entities;
2   
3   import javax.xml.bind.annotation.XmlAccessType;
4   import javax.xml.bind.annotation.XmlAccessorType;
5   import javax.xml.bind.annotation.XmlRootElement;
6   
7   @XmlAccessorType(XmlAccessType.FIELD)
8   @XmlRootElement
9   public class Orange {
10      String name;
11  
12      public Orange() {
13      }
14  
15      public Orange(final String name) {
16          this.name = name;
17      }
18  
19      public String getName() {
20          return name;
21      }
22  }