Blame view

src/main/java/pl/itcrowd/youtrack/api/rest/Field.java 5.61 KB
bernard authored
1 2 3 4
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
l.gladek authored
5
// Generated on: 2015.12.18 at 12:37:27 PM CET 
bernard authored
6
//
bernard authored
7
package pl.itcrowd.youtrack.api.rest;
bernard authored
8
l.gladek authored
9 10
import java.util.ArrayList;
import java.util.List;
bernard authored
11 12 13 14 15 16
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
l.gladek authored
17
bernard authored
18 19 20

/**
 * <p>Java class for fieldType complex type.
l.gladek authored
21
 * 
bernard authored
22
 * <p>The following schema fragment specifies the expected content contained within this class.
l.gladek authored
23
 * 
bernard authored
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * <pre>
 * &lt;complexType name="fieldType">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence maxOccurs="unbounded" minOccurs="0">
 *         &lt;element name="value">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                 &lt;attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *       &lt;/sequence>
 *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
l.gladek authored
45 46
 *
 * 
bernard authored
47 48 49 50 51
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fieldType", propOrder = {"values"})
public class Field {
l.gladek authored
52 53 54
    @XmlAttribute
    protected String name;
bernard authored
55 56 57
    @XmlElement(name = "value")
    protected List<Field.Value> values;
l.gladek authored
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    /**
     * 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;
    }
bernard authored
81 82 83

    /**
     * Gets the value of the values property.
l.gladek authored
84 85
     *
     * <p>
bernard authored
86 87 88 89
     * 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 <CODE>set</CODE> method for the values property.
l.gladek authored
90 91
     *
     * <p>
bernard authored
92 93 94 95
     * For example, to add a new item, do as follows:
     * <pre>
     *    getValues().add(newItem);
     * </pre>
l.gladek authored
96 97 98
     *
     *
     * <p>
bernard authored
99 100
     * Objects of the following type(s) are allowed in the list
     * {@link Field.Value }
l.gladek authored
101 102
     *
     *
bernard authored
103 104 105 106 107 108 109 110 111
     */
    public List<Field.Value> getValues()
    {
        if (values == null) {
            values = new ArrayList<Field.Value>();
        }
        return this.values;
    }
bernard authored
112
    /**
bernard authored
113
     * <p>Java class for anonymous complex type.
l.gladek authored
114
     * 
bernard authored
115
     * <p>The following schema fragment specifies the expected content contained within this class.
l.gladek authored
116
     * 
bernard authored
117 118 119 120 121 122 123 124 125 126
     * <pre>
     * &lt;complexType>
     *   &lt;complexContent>
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
     *       &lt;attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
l.gladek authored
127 128
     * 
     * 
bernard authored
129 130 131 132 133 134 135 136 137
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {"content"})
    public static class Value {

        @XmlValue
        protected String content;

        @XmlAttribute
l.gladek authored
138
        protected String role;
bernard authored
139
bernard authored
140
        @XmlAttribute
l.gladek authored
141
        protected String type;
bernard authored
142 143 144

        /**
         * Gets the value of the content property.
l.gladek authored
145 146 147 148
         * 
         * @return
         *     possible object is
         *     {@link String }
bernard authored
149 150 151 152 153 154 155 156 157
         *
         */
        public String getContent()
        {
            return content;
        }

        /**
         * Sets the value of the content property.
l.gladek authored
158 159 160 161
         * 
         * @param value
         *     allowed object is
         *     {@link String }
bernard authored
162 163 164 165 166 167 168 169
         *
         */
        public void setContent(String value)
        {
            this.content = value;
        }

        /**
l.gladek authored
170 171 172 173 174
         * Gets the value of the role property.
         *
         * @return
         *     possible object is
         *     {@link String }
bernard authored
175 176
         *
         */
l.gladek authored
177
        public String getRole()
bernard authored
178
        {
l.gladek authored
179
            return role;
bernard authored
180 181 182
        }

        /**
l.gladek authored
183 184 185 186 187
         * Sets the value of the role property.
         *
         * @param value
         *     allowed object is
         *     {@link String }
bernard authored
188 189
         *
         */
l.gladek authored
190
        public void setRole(String value)
bernard authored
191
        {
l.gladek authored
192
            this.role = value;
bernard authored
193 194 195
        }

        /**
l.gladek authored
196 197 198 199 200
         * Gets the value of the type property.
         *
         * @return
         *     possible object is
         *     {@link String }
bernard authored
201 202
         *
         */
l.gladek authored
203
        public String getType()
bernard authored
204
        {
l.gladek authored
205
            return type;
bernard authored
206 207 208
        }

        /**
l.gladek authored
209 210 211 212 213
         * Sets the value of the type property.
         *
         * @param value
         *     allowed object is
         *     {@link String }
bernard authored
214 215
         *
         */
l.gladek authored
216
        public void setType(String value)
bernard authored
217
        {
l.gladek authored
218
            this.type = value;
bernard authored
219 220 221
        }
    }
}