View Javadoc

1   package com.atlassian.plugins.rest.doclet.generators.schema.beans.issue;
2   
3   import org.codehaus.jackson.annotate.JsonIgnoreProperties;
4   import org.codehaus.jackson.annotate.JsonProperty;
5   
6   /**
7    * A JSON-convertable representation of a StatusCategory
8    *
9    * @since v6.1
10   */
11  @JsonIgnoreProperties (ignoreUnknown = true)
12  public class StatusCategoryJsonBean
13  {
14      @JsonProperty
15      private String self;
16  
17      @JsonProperty
18      private Long id;
19  
20      @JsonProperty
21      private String key;
22  
23      @JsonProperty
24      private String colorName;
25  
26      @JsonProperty
27      private String name;
28  }