+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "commentType", propOrder = {"content"})
+public class Comment {
+// ------------------------------ FIELDS ------------------------------
+
+ @XmlAttribute
+ protected String author;
+
+ @XmlElementRefs({@XmlElementRef(name = "value", type = JAXBElement.class), @XmlElementRef(name = "replies", type = JAXBElement.class)})
+ @XmlMixed
+ protected List content;
+
+ @XmlAttribute
+ protected Long created;
+
+ @XmlAttribute
+ protected String deleted;
+
+ @XmlAttribute
+ protected String id;
+
+ @XmlAttribute
+ protected String issueId;
+
+ @XmlAttribute
+ protected String name;
+
+ @XmlAttribute
+ protected String shownForIssueAuthor;
+
+ @XmlAttribute
+ protected String text;
+
+// --------------------- GETTER / SETTER METHODS ---------------------
+
+ /**
+ * Gets the value of the author property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getAuthor()
+ {
+ return author;
+ }
+
+ /**
+ * Sets the value of the author property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setAuthor(String value)
+ {
+ this.author = value;
+ }
+
+ /**
+ * Gets the value of the content property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the content property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getContent().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link JAXBElement }{@code <}{@link String }{@code >}
+ * {@link JAXBElement }{@code <}{@link Comment.Value }{@code >}
+ * {@link String }
+ */
+ public List getContent()
+ {
+ if (content == null) {
+ content = new ArrayList();
+ }
+ return this.content;
+ }
+
+ /**
+ * Gets the value of the created property.
+ *
+ * @return possible object is
+ * {@link Long }
+ */
+ public Long getCreated()
+ {
+ return created;
+ }
+
+ /**
+ * Sets the value of the created property.
+ *
+ * @param value allowed object is
+ * {@link Long }
+ */
+ public void setCreated(Long value)
+ {
+ this.created = value;
+ }
+
+ /**
+ * Gets the value of the deleted property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getDeleted()
+ {
+ return deleted;
+ }
+
+ /**
+ * Sets the value of the deleted property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setDeleted(String value)
+ {
+ this.deleted = value;
+ }
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getId()
+ {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setId(String value)
+ {
+ this.id = value;
+ }
+
+ /**
+ * Gets the value of the issueId property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getIssueId()
+ {
+ return issueId;
+ }
+
+ /**
+ * Sets the value of the issueId property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setIssueId(String value)
+ {
+ this.issueId = value;
+ }
+
+ /**
+ * Gets the value of the name property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getName()
+ {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setName(String value)
+ {
+ this.name = value;
+ }
+
+ /**
+ * Gets the value of the shownForIssueAuthor property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getShownForIssueAuthor()
+ {
+ return shownForIssueAuthor;
+ }
+
+ /**
+ * Sets the value of the shownForIssueAuthor property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setShownForIssueAuthor(String value)
+ {
+ this.shownForIssueAuthor = value;
+ }
+
+ /**
+ * Gets the value of the text property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getText()
+ {
+ return text;
+ }
+
+ /**
+ * Sets the value of the text property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setText(String value)
+ {
+ this.text = value;
+ }
+
+// -------------------------- INNER CLASSES --------------------------
+
+ /**
+ *
Java class for anonymous complex type.
+ *
+ *
The following schema fragment specifies the expected content contained within this class.
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "fieldType", propOrder = {"values"})
+public class Field {
+// ------------------------------ FIELDS ------------------------------
+
+ @XmlAttribute
+ protected String name;
+
+ @XmlElement(name = "value")
+ protected List values;
+
+// --------------------- GETTER / SETTER METHODS ---------------------
+
+ /**
+ * Gets the value of the name property.
+ *
+ * @return possible object is
+ * {@link String }
+ */
+ public String getName()
+ {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value allowed object is
+ * {@link String }
+ */
+ public void setName(String value)
+ {
+ this.name = value;
+ }
+
+ /**
+ * Gets the value of the values property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the values property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getValues().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Field.Value }
+ */
+ public List getValues()
+ {
+ if (values == null) {
+ values = new ArrayList();
+ }
+ return this.values;
+ }
+
+// -------------------------- INNER CLASSES --------------------------
+
+ /**
+ *
Java class for anonymous complex type.
+ *
+ *
The following schema fragment specifies the expected content contained within this class.
+ *