View Javadoc

1   package com.atlassian.plugins.rest.doclet.generators.schema.beans.issue;
2   
3   import java.util.Map;
4   import javax.xml.bind.annotation.XmlAttribute;
5   import javax.xml.bind.annotation.XmlElement;
6   
7   /**
8    * Bean for the top level of a GET editmeta issue request.
9    *
10   * @since v5.0
11   */
12  public class EditMetaBean
13  {
14      @XmlAttribute
15      @XmlElement
16      private Map<String, FieldMetaBean> fields;
17  }