bernard
authored
2012-07-02 21:19:19 +0000
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
2015-12-18 12:43:14 +0100
5
// Generated on: 2015.12.18 at 12:37:27 PM CET
bernard
authored
2012-07-02 21:19:19 +0000
6
//
bernard
authored
2013-04-04 13:08:24 +0000
7
package pl . itcrowd . youtrack . api . rest ;
bernard
authored
2012-07-02 21:19:19 +0000
8
l.gladek
authored
2015-12-18 12:43:14 +0100
9
10
import java.util.ArrayList ;
import java.util.List ;
bernard
authored
2012-07-02 21:19:19 +0000
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
2015-12-18 12:43:14 +0100
17
bernard
authored
2012-07-02 21:19:19 +0000
18
19
20
/**
* <p>Java class for fieldType complex type.
l.gladek
authored
2015-12-18 12:43:14 +0100
21
*
bernard
authored
2012-07-02 21:19:19 +0000
22
* <p>The following schema fragment specifies the expected content contained within this class.
l.gladek
authored
2015-12-18 12:43:14 +0100
23
*
bernard
authored
2012-07-02 21:19:19 +0000
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
* <pre>
* <complexType name="fieldType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence maxOccurs="unbounded" minOccurs="0">
* <element name="value">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
l.gladek
authored
2015-12-18 12:43:14 +0100
45
46
*
*
bernard
authored
2012-07-02 21:19:19 +0000
47
48
49
50
51
*/
@XmlAccessorType ( XmlAccessType . FIELD )
@XmlType ( name = "fieldType" , propOrder = { "values" })
public class Field {
l.gladek
authored
2015-12-18 12:43:14 +0100
52
53
54
@XmlAttribute
protected String name ;
bernard
authored
2012-07-02 21:19:19 +0000
55
56
57
@XmlElement ( name = "value" )
protected List < Field . Value > values ;
l.gladek
authored
2015-12-18 12:43:14 +0100
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
2012-07-02 21:19:19 +0000
81
82
83
/**
* Gets the value of the values property.
l.gladek
authored
2015-12-18 12:43:14 +0100
84
85
*
* <p>
bernard
authored
2012-07-02 21:19:19 +0000
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
2015-12-18 12:43:14 +0100
90
91
*
* <p>
bernard
authored
2012-07-02 21:19:19 +0000
92
93
94
95
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
l.gladek
authored
2015-12-18 12:43:14 +0100
96
97
98
*
*
* <p>
bernard
authored
2012-07-02 21:19:19 +0000
99
100
* Objects of the following type(s) are allowed in the list
* {@link Field.Value }
l.gladek
authored
2015-12-18 12:43:14 +0100
101
102
*
*
bernard
authored
2012-07-02 21:19:19 +0000
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
2013-04-04 13:12:45 +0000
112
/**
bernard
authored
2012-07-02 21:19:19 +0000
113
* <p>Java class for anonymous complex type.
l.gladek
authored
2015-12-18 12:43:14 +0100
114
*
bernard
authored
2012-07-02 21:19:19 +0000
115
* <p>The following schema fragment specifies the expected content contained within this class.
l.gladek
authored
2015-12-18 12:43:14 +0100
116
*
bernard
authored
2012-07-02 21:19:19 +0000
117
118
119
120
121
122
123
124
125
126
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
l.gladek
authored
2015-12-18 12:43:14 +0100
127
128
*
*
bernard
authored
2012-07-02 21:19:19 +0000
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
2015-12-18 12:43:14 +0100
138
protected String role ;
bernard
authored
2012-07-02 21:19:19 +0000
139
bernard
authored
2013-04-04 13:12:45 +0000
140
@XmlAttribute
l.gladek
authored
2015-12-18 12:43:14 +0100
141
protected String type ;
bernard
authored
2012-07-02 21:19:19 +0000
142
143
144
/**
* Gets the value of the content property.
l.gladek
authored
2015-12-18 12:43:14 +0100
145
146
147
148
*
* @return
* possible object is
* {@link String }
bernard
authored
2012-07-02 21:19:19 +0000
149
150
151
152
153
154
155
156
157
*
*/
public String getContent ()
{
return content ;
}
/**
* Sets the value of the content property.
l.gladek
authored
2015-12-18 12:43:14 +0100
158
159
160
161
*
* @param value
* allowed object is
* {@link String }
bernard
authored
2012-07-02 21:19:19 +0000
162
163
164
165
166
167
168
169
*
*/
public void setContent ( String value )
{
this . content = value ;
}
/**
l.gladek
authored
2015-12-18 12:43:14 +0100
170
171
172
173
174
* Gets the value of the role property.
*
* @return
* possible object is
* {@link String }
bernard
authored
2012-07-02 21:19:19 +0000
175
176
*
*/
l.gladek
authored
2015-12-18 12:43:14 +0100
177
public String getRole ()
bernard
authored
2012-07-02 21:19:19 +0000
178
{
l.gladek
authored
2015-12-18 12:43:14 +0100
179
return role ;
bernard
authored
2012-07-02 21:19:19 +0000
180
181
182
}
/**
l.gladek
authored
2015-12-18 12:43:14 +0100
183
184
185
186
187
* Sets the value of the role property.
*
* @param value
* allowed object is
* {@link String }
bernard
authored
2012-07-02 21:19:19 +0000
188
189
*
*/
l.gladek
authored
2015-12-18 12:43:14 +0100
190
public void setRole ( String value )
bernard
authored
2012-07-02 21:19:19 +0000
191
{
l.gladek
authored
2015-12-18 12:43:14 +0100
192
this . role = value ;
bernard
authored
2012-07-02 21:19:19 +0000
193
194
195
}
/**
l.gladek
authored
2015-12-18 12:43:14 +0100
196
197
198
199
200
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
bernard
authored
2012-07-02 21:19:19 +0000
201
202
*
*/
l.gladek
authored
2015-12-18 12:43:14 +0100
203
public String getType ()
bernard
authored
2012-07-02 21:19:19 +0000
204
{
l.gladek
authored
2015-12-18 12:43:14 +0100
205
return type ;
bernard
authored
2012-07-02 21:19:19 +0000
206
207
208
}
/**
l.gladek
authored
2015-12-18 12:43:14 +0100
209
210
211
212
213
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
bernard
authored
2012-07-02 21:19:19 +0000
214
215
*
*/
l.gladek
authored
2015-12-18 12:43:14 +0100
216
public void setType ( String value )
bernard
authored
2012-07-02 21:19:19 +0000
217
{
l.gladek
authored
2015-12-18 12:43:14 +0100
218
this . type = value ;
bernard
authored
2012-07-02 21:19:19 +0000
219
220
221
}
}
}