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 Status
8    *
9    * @since v5.0
10   */
11  @JsonIgnoreProperties (ignoreUnknown = true)
12  public class StatusJsonBean
13  {
14      @JsonProperty
15      private String self;
16  
17      @JsonProperty
18      private String statusColor;
19  
20      @JsonProperty
21      private String description;
22  
23      @JsonProperty
24      private String iconUrl;
25  
26      @JsonProperty
27      private String name;
28  
29      @JsonProperty
30      private String id;
31  
32      @JsonProperty
33      private StatusCategoryJsonBean statusCategory;
34  }