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   import java.util.ArrayList;
7   import java.util.List;
8   
9   /**
10   * Models the operations bar of a view issue page.  It contains a link group for issue operations (including workflow
11   * transitions) and issue tools (sharing and issue views).
12   * <p/>
13   * Any other web-items that are in the <pre>view.issue.opsbar</pre> or <pre>jira.issue.tools</pre> web-sections
14   * will also be added to these link groups.
15   *
16   * @since v5.0
17   */
18  @SuppressWarnings ({ "FieldCanBeLocal", "UnusedDeclaration" })
19  @JsonIgnoreProperties (ignoreUnknown = true)
20  public class OpsbarBean
21  {
22      @JsonProperty
23      private List<LinkGroupBean> linkGroups = new ArrayList<LinkGroupBean>();
24  }