Subversion Repositories bacoAlunos

Rev

Rev 1549 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1496 jmachado 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
1788 jmachado 5
// Generated on: 2017.07.07 at 12:21:09 PM WEST 
1496 jmachado 6
//
7
 
8
 
9
package pt.estgp.estgweb.services.courses.xsd;
10
 
11
import java.util.ArrayList;
12
import java.util.List;
1534 jmachado 13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlAttribute;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlRootElement;
18
import javax.xml.bind.annotation.XmlType;
1496 jmachado 19
 
20
 
21
/**
22
 * <p>Java class for anonymous complex type.
23
 *
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 *
26
 * <pre>
27
 * &lt;complexType>
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
1534 jmachado 31
 *         &lt;element name="codigoPlanoSiges" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32
 *         &lt;element name="anoPlanoSiges" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33
 *         &lt;element name="descPlanoSiges" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
1496 jmachado 34
 *         &lt;element name="siges" type="{http://www.w3.org/2001/XMLSchema}string"/>
35
 *         &lt;element name="nome" type="{http://www.w3.org/2001/XMLSchema}string"/>
36
 *         &lt;element name="dep" type="{http://www.w3.org/2001/XMLSchema}string"/>
37
 *         &lt;element name="semestre" maxOccurs="unbounded">
38
 *           &lt;complexType>
39
 *             &lt;complexContent>
40
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
1521 jmachado 41
 *                 &lt;sequence>
42
 *                   &lt;element name="notas" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
43
 *                   &lt;choice>
44
 *                     &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
45
 *                     &lt;element name="perfil" maxOccurs="unbounded">
46
 *                       &lt;complexType>
47
 *                         &lt;complexContent>
48
 *                           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
49
 *                             &lt;sequence>
50
 *                               &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
51
 *                             &lt;/sequence>
52
 *                             &lt;attribute name="nome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
53
 *                             &lt;attribute name="perfilId" type="{http://www.w3.org/2001/XMLSchema}string" />
54
 *                           &lt;/restriction>
55
 *                         &lt;/complexContent>
56
 *                       &lt;/complexType>
57
 *                     &lt;/element>
58
 *                   &lt;/choice>
59
 *                 &lt;/sequence>
1506 jmachado 60
 *                 &lt;attribute name="semestreDesc" type="{http://www.w3.org/2001/XMLSchema}string" />
1517 jmachado 61
 *                 &lt;attribute name="semestreDescEn" type="{http://www.w3.org/2001/XMLSchema}string" />
62
 *                 &lt;attribute name="semestreDescEs" type="{http://www.w3.org/2001/XMLSchema}string" />
63
 *                 &lt;attribute name="semestreDescFr" type="{http://www.w3.org/2001/XMLSchema}string" />
1496 jmachado 64
 *                 &lt;attribute name="id" use="required">
65
 *                   &lt;simpleType>
66
 *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
67
 *                       &lt;enumeration value="S1"/>
68
 *                       &lt;enumeration value="S2"/>
69
 *                       &lt;enumeration value="S3"/>
70
 *                       &lt;enumeration value="S4"/>
71
 *                       &lt;enumeration value="S5"/>
72
 *                       &lt;enumeration value="S6"/>
73
 *                       &lt;enumeration value="S7"/>
74
 *                       &lt;enumeration value="S8"/>
75
 *                       &lt;enumeration value="S9"/>
76
 *                       &lt;enumeration value="S10"/>
77
 *                       &lt;enumeration value="S11"/>
78
 *                       &lt;enumeration value="S12"/>
79
 *                       &lt;enumeration value="A1"/>
80
 *                       &lt;enumeration value="A2"/>
81
 *                       &lt;enumeration value="A3"/>
82
 *                       &lt;enumeration value="A4"/>
83
 *                       &lt;enumeration value="A5"/>
84
 *                     &lt;/restriction>
85
 *                   &lt;/simpleType>
86
 *                 &lt;/attribute>
1507 jmachado 87
 *                 &lt;attribute name="semestreId" type="{http://www.w3.org/2001/XMLSchema}string" />
1496 jmachado 88
 *               &lt;/restriction>
89
 *             &lt;/complexContent>
90
 *           &lt;/complexType>
91
 *         &lt;/element>
92
 *       &lt;/sequence>
93
 *     &lt;/restriction>
94
 *   &lt;/complexContent>
95
 * &lt;/complexType>
96
 * </pre>
97
 *
98
 *
99
 */
100
@XmlAccessorType(XmlAccessType.FIELD)
101
@XmlType(name = "", propOrder = {
1534 jmachado 102
    "codigoPlanoSiges",
103
    "anoPlanoSiges",
104
    "descPlanoSiges",
1496 jmachado 105
    "siges",
106
    "nome",
107
    "dep",
108
    "semestre"
109
})
110
@XmlRootElement(name = "curso")
111
public class Curso {
112
 
1534 jmachado 113
    protected 1.5.0/docs/api/java/lang/String.html">String codigoPlanoSiges;
114
    protected 1.5.0/docs/api/java/lang/String.html">String anoPlanoSiges;
115
    protected 1.5.0/docs/api/java/lang/String.html">String descPlanoSiges;
1496 jmachado 116
    @XmlElement(required = true)
117
    protected 1.5.0/docs/api/java/lang/String.html">String siges;
118
    @XmlElement(required = true)
119
    protected 1.5.0/docs/api/java/lang/String.html">String nome;
120
    @XmlElement(required = true)
121
    protected 1.5.0/docs/api/java/lang/String.html">String dep;
122
    @XmlElement(required = true)
123
    protected List<Curso.Semestre> semestre;
124
 
125
    /**
1534 jmachado 126
     * Gets the value of the codigoPlanoSiges property.
127
     *
128
     * @return
129
     *     possible object is
130
     *     {@link String }
131
     *    
132
     */
133
    public 1.5.0/docs/api/java/lang/String.html">String getCodigoPlanoSiges() {
134
        return codigoPlanoSiges;
135
    }
136
 
137
    /**
138
     * Sets the value of the codigoPlanoSiges property.
139
     *
140
     * @param value
141
     *     allowed object is
142
     *     {@link String }
143
     *    
144
     */
145
    public void setCodigoPlanoSiges(1.5.0/docs/api/java/lang/String.html">String value) {
146
        this.codigoPlanoSiges = value;
147
    }
148
 
149
    /**
150
     * Gets the value of the anoPlanoSiges property.
151
     *
152
     * @return
153
     *     possible object is
154
     *     {@link String }
155
     *    
156
     */
157
    public 1.5.0/docs/api/java/lang/String.html">String getAnoPlanoSiges() {
158
        return anoPlanoSiges;
159
    }
160
 
161
    /**
162
     * Sets the value of the anoPlanoSiges property.
163
     *
164
     * @param value
165
     *     allowed object is
166
     *     {@link String }
167
     *    
168
     */
169
    public void setAnoPlanoSiges(1.5.0/docs/api/java/lang/String.html">String value) {
170
        this.anoPlanoSiges = value;
171
    }
172
 
173
    /**
174
     * Gets the value of the descPlanoSiges property.
175
     *
176
     * @return
177
     *     possible object is
178
     *     {@link String }
179
     *    
180
     */
181
    public 1.5.0/docs/api/java/lang/String.html">String getDescPlanoSiges() {
182
        return descPlanoSiges;
183
    }
184
 
185
    /**
186
     * Sets the value of the descPlanoSiges property.
187
     *
188
     * @param value
189
     *     allowed object is
190
     *     {@link String }
191
     *    
192
     */
193
    public void setDescPlanoSiges(1.5.0/docs/api/java/lang/String.html">String value) {
194
        this.descPlanoSiges = value;
195
    }
196
 
197
    /**
1496 jmachado 198
     * Gets the value of the siges property.
199
     *
200
     * @return
201
     *     possible object is
202
     *     {@link String }
203
     *    
204
     */
205
    public 1.5.0/docs/api/java/lang/String.html">String getSiges() {
206
        return siges;
207
    }
208
 
209
    /**
210
     * Sets the value of the siges property.
211
     *
212
     * @param value
213
     *     allowed object is
214
     *     {@link String }
215
     *    
216
     */
217
    public void setSiges(1.5.0/docs/api/java/lang/String.html">String value) {
218
        this.siges = value;
219
    }
220
 
221
    /**
222
     * Gets the value of the nome property.
223
     *
224
     * @return
225
     *     possible object is
226
     *     {@link String }
227
     *    
228
     */
229
    public 1.5.0/docs/api/java/lang/String.html">String getNome() {
230
        return nome;
231
    }
232
 
233
    /**
234
     * Sets the value of the nome property.
235
     *
236
     * @param value
237
     *     allowed object is
238
     *     {@link String }
239
     *    
240
     */
241
    public void setNome(1.5.0/docs/api/java/lang/String.html">String value) {
242
        this.nome = value;
243
    }
244
 
245
    /**
246
     * Gets the value of the dep property.
247
     *
248
     * @return
249
     *     possible object is
250
     *     {@link String }
251
     *    
252
     */
253
    public 1.5.0/docs/api/java/lang/String.html">String getDep() {
254
        return dep;
255
    }
256
 
257
    /**
258
     * Sets the value of the dep property.
259
     *
260
     * @param value
261
     *     allowed object is
262
     *     {@link String }
263
     *    
264
     */
265
    public void setDep(1.5.0/docs/api/java/lang/String.html">String value) {
266
        this.dep = value;
267
    }
268
 
269
    /**
270
     * Gets the value of the semestre property.
271
     *
272
     * <p>
273
     * This accessor method returns a reference to the live list,
274
     * not a snapshot. Therefore any modification you make to the
275
     * returned list will be present inside the JAXB object.
276
     * This is why there is not a <CODE>set</CODE> method for the semestre property.
277
     *
278
     * <p>
279
     * For example, to add a new item, do as follows:
280
     * <pre>
281
     *    getSemestre().add(newItem);
282
     * </pre>
283
     *
284
     *
285
     * <p>
286
     * Objects of the following type(s) are allowed in the list
287
     * {@link Curso.Semestre }
288
     *
289
     *
290
     */
291
    public List<Curso.Semestre> getSemestre() {
292
        if (semestre == null) {
293
            semestre = new ArrayList<Curso.Semestre>();
294
        }
295
        return this.semestre;
296
    }
297
 
298
 
299
    /**
300
     * <p>Java class for anonymous complex type.
301
     *
302
     * <p>The following schema fragment specifies the expected content contained within this class.
303
     *
304
     * <pre>
305
     * &lt;complexType>
306
     *   &lt;complexContent>
307
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
1521 jmachado 308
     *       &lt;sequence>
309
     *         &lt;element name="notas" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
310
     *         &lt;choice>
311
     *           &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
312
     *           &lt;element name="perfil" maxOccurs="unbounded">
313
     *             &lt;complexType>
314
     *               &lt;complexContent>
315
     *                 &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
316
     *                   &lt;sequence>
317
     *                     &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
318
     *                   &lt;/sequence>
319
     *                   &lt;attribute name="nome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
320
     *                   &lt;attribute name="perfilId" type="{http://www.w3.org/2001/XMLSchema}string" />
321
     *                 &lt;/restriction>
322
     *               &lt;/complexContent>
323
     *             &lt;/complexType>
324
     *           &lt;/element>
325
     *         &lt;/choice>
326
     *       &lt;/sequence>
1506 jmachado 327
     *       &lt;attribute name="semestreDesc" type="{http://www.w3.org/2001/XMLSchema}string" />
1517 jmachado 328
     *       &lt;attribute name="semestreDescEn" type="{http://www.w3.org/2001/XMLSchema}string" />
329
     *       &lt;attribute name="semestreDescEs" type="{http://www.w3.org/2001/XMLSchema}string" />
330
     *       &lt;attribute name="semestreDescFr" type="{http://www.w3.org/2001/XMLSchema}string" />
1496 jmachado 331
     *       &lt;attribute name="id" use="required">
332
     *         &lt;simpleType>
333
     *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
334
     *             &lt;enumeration value="S1"/>
335
     *             &lt;enumeration value="S2"/>
336
     *             &lt;enumeration value="S3"/>
337
     *             &lt;enumeration value="S4"/>
338
     *             &lt;enumeration value="S5"/>
339
     *             &lt;enumeration value="S6"/>
340
     *             &lt;enumeration value="S7"/>
341
     *             &lt;enumeration value="S8"/>
342
     *             &lt;enumeration value="S9"/>
343
     *             &lt;enumeration value="S10"/>
344
     *             &lt;enumeration value="S11"/>
345
     *             &lt;enumeration value="S12"/>
346
     *             &lt;enumeration value="A1"/>
347
     *             &lt;enumeration value="A2"/>
348
     *             &lt;enumeration value="A3"/>
349
     *             &lt;enumeration value="A4"/>
350
     *             &lt;enumeration value="A5"/>
351
     *           &lt;/restriction>
352
     *         &lt;/simpleType>
353
     *       &lt;/attribute>
1507 jmachado 354
     *       &lt;attribute name="semestreId" type="{http://www.w3.org/2001/XMLSchema}string" />
1496 jmachado 355
     *     &lt;/restriction>
356
     *   &lt;/complexContent>
357
     * &lt;/complexType>
358
     * </pre>
359
     *
360
     *
361
     */
362
    @XmlAccessorType(XmlAccessType.FIELD)
363
    @XmlType(name = "", propOrder = {
1521 jmachado 364
        "notas",
1496 jmachado 365
        "unidade",
366
        "perfil"
367
    })
368
    public static class Semestre {
369
 
1521 jmachado 370
        protected 1.5.0/docs/api/java/lang/String.html">String notas;
1496 jmachado 371
        protected List<UnidadeType> unidade;
372
        protected List<Curso.Semestre.Perfil> perfil;
1506 jmachado 373
        @XmlAttribute
374
        protected 1.5.0/docs/api/java/lang/String.html">String semestreDesc;
1517 jmachado 375
        @XmlAttribute
376
        protected 1.5.0/docs/api/java/lang/String.html">String semestreDescEn;
377
        @XmlAttribute
378
        protected 1.5.0/docs/api/java/lang/String.html">String semestreDescEs;
379
        @XmlAttribute
380
        protected 1.5.0/docs/api/java/lang/String.html">String semestreDescFr;
1496 jmachado 381
        @XmlAttribute(required = true)
382
        protected 1.5.0/docs/api/java/lang/String.html">String id;
1507 jmachado 383
        @XmlAttribute
384
        protected 1.5.0/docs/api/java/lang/String.html">String semestreId;
1496 jmachado 385
 
386
        /**
1521 jmachado 387
         * Gets the value of the notas property.
388
         *
389
         * @return
390
         *     possible object is
391
         *     {@link String }
392
         *    
393
         */
394
        public 1.5.0/docs/api/java/lang/String.html">String getNotas() {
395
            return notas;
396
        }
397
 
398
        /**
399
         * Sets the value of the notas property.
400
         *
401
         * @param value
402
         *     allowed object is
403
         *     {@link String }
404
         *    
405
         */
406
        public void setNotas(1.5.0/docs/api/java/lang/String.html">String value) {
407
            this.notas = value;
408
        }
409
 
410
        /**
1496 jmachado 411
         * Gets the value of the unidade property.
412
         *
413
         * <p>
414
         * This accessor method returns a reference to the live list,
415
         * not a snapshot. Therefore any modification you make to the
416
         * returned list will be present inside the JAXB object.
417
         * This is why there is not a <CODE>set</CODE> method for the unidade property.
418
         *
419
         * <p>
420
         * For example, to add a new item, do as follows:
421
         * <pre>
422
         *    getUnidade().add(newItem);
423
         * </pre>
424
         *
425
         *
426
         * <p>
427
         * Objects of the following type(s) are allowed in the list
428
         * {@link UnidadeType }
429
         *
430
         *
431
         */
432
        public List<UnidadeType> getUnidade() {
433
            if (unidade == null) {
434
                unidade = new ArrayList<UnidadeType>();
435
            }
436
            return this.unidade;
437
        }
438
 
439
        /**
440
         * Gets the value of the perfil property.
441
         *
442
         * <p>
443
         * This accessor method returns a reference to the live list,
444
         * not a snapshot. Therefore any modification you make to the
445
         * returned list will be present inside the JAXB object.
446
         * This is why there is not a <CODE>set</CODE> method for the perfil property.
447
         *
448
         * <p>
449
         * For example, to add a new item, do as follows:
450
         * <pre>
451
         *    getPerfil().add(newItem);
452
         * </pre>
453
         *
454
         *
455
         * <p>
456
         * Objects of the following type(s) are allowed in the list
457
         * {@link Curso.Semestre.Perfil }
458
         *
459
         *
460
         */
461
        public List<Curso.Semestre.Perfil> getPerfil() {
462
            if (perfil == null) {
463
                perfil = new ArrayList<Curso.Semestre.Perfil>();
464
            }
465
            return this.perfil;
466
        }
467
 
468
        /**
1506 jmachado 469
         * Gets the value of the semestreDesc property.
470
         *
471
         * @return
472
         *     possible object is
473
         *     {@link String }
474
         *    
475
         */
476
        public 1.5.0/docs/api/java/lang/String.html">String getSemestreDesc() {
477
            return semestreDesc;
478
        }
479
 
480
        /**
481
         * Sets the value of the semestreDesc property.
482
         *
483
         * @param value
484
         *     allowed object is
485
         *     {@link String }
486
         *    
487
         */
488
        public void setSemestreDesc(1.5.0/docs/api/java/lang/String.html">String value) {
489
            this.semestreDesc = value;
490
        }
491
 
492
        /**
1517 jmachado 493
         * Gets the value of the semestreDescEn property.
494
         *
495
         * @return
496
         *     possible object is
497
         *     {@link String }
498
         *    
499
         */
500
        public 1.5.0/docs/api/java/lang/String.html">String getSemestreDescEn() {
501
            return semestreDescEn;
502
        }
503
 
504
        /**
505
         * Sets the value of the semestreDescEn property.
506
         *
507
         * @param value
508
         *     allowed object is
509
         *     {@link String }
510
         *    
511
         */
512
        public void setSemestreDescEn(1.5.0/docs/api/java/lang/String.html">String value) {
513
            this.semestreDescEn = value;
514
        }
515
 
516
        /**
517
         * Gets the value of the semestreDescEs property.
518
         *
519
         * @return
520
         *     possible object is
521
         *     {@link String }
522
         *    
523
         */
524
        public 1.5.0/docs/api/java/lang/String.html">String getSemestreDescEs() {
525
            return semestreDescEs;
526
        }
527
 
528
        /**
529
         * Sets the value of the semestreDescEs property.
530
         *
531
         * @param value
532
         *     allowed object is
533
         *     {@link String }
534
         *    
535
         */
536
        public void setSemestreDescEs(1.5.0/docs/api/java/lang/String.html">String value) {
537
            this.semestreDescEs = value;
538
        }
539
 
540
        /**
541
         * Gets the value of the semestreDescFr property.
542
         *
543
         * @return
544
         *     possible object is
545
         *     {@link String }
546
         *    
547
         */
548
        public 1.5.0/docs/api/java/lang/String.html">String getSemestreDescFr() {
549
            return semestreDescFr;
550
        }
551
 
552
        /**
553
         * Sets the value of the semestreDescFr property.
554
         *
555
         * @param value
556
         *     allowed object is
557
         *     {@link String }
558
         *    
559
         */
560
        public void setSemestreDescFr(1.5.0/docs/api/java/lang/String.html">String value) {
561
            this.semestreDescFr = value;
562
        }
563
 
564
        /**
1496 jmachado 565
         * Gets the value of the id property.
566
         *
567
         * @return
568
         *     possible object is
569
         *     {@link String }
570
         *    
571
         */
572
        public 1.5.0/docs/api/java/lang/String.html">String getId() {
573
            return id;
574
        }
575
 
576
        /**
577
         * Sets the value of the id property.
578
         *
579
         * @param value
580
         *     allowed object is
581
         *     {@link String }
582
         *    
583
         */
584
        public void setId(1.5.0/docs/api/java/lang/String.html">String value) {
585
            this.id = value;
586
        }
587
 
1507 jmachado 588
        /**
589
         * Gets the value of the semestreId property.
590
         *
591
         * @return
592
         *     possible object is
593
         *     {@link String }
594
         *    
595
         */
596
        public 1.5.0/docs/api/java/lang/String.html">String getSemestreId() {
597
            return semestreId;
598
        }
1496 jmachado 599
 
600
        /**
1507 jmachado 601
         * Sets the value of the semestreId property.
602
         *
603
         * @param value
604
         *     allowed object is
605
         *     {@link String }
606
         *    
607
         */
608
        public void setSemestreId(1.5.0/docs/api/java/lang/String.html">String value) {
609
            this.semestreId = value;
610
        }
611
 
612
 
613
        /**
1496 jmachado 614
         * <p>Java class for anonymous complex type.
615
         *
616
         * <p>The following schema fragment specifies the expected content contained within this class.
617
         *
618
         * <pre>
619
         * &lt;complexType>
620
         *   &lt;complexContent>
621
         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
622
         *       &lt;sequence>
623
         *         &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
624
         *       &lt;/sequence>
625
         *       &lt;attribute name="nome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
1507 jmachado 626
         *       &lt;attribute name="perfilId" type="{http://www.w3.org/2001/XMLSchema}string" />
1496 jmachado 627
         *     &lt;/restriction>
628
         *   &lt;/complexContent>
629
         * &lt;/complexType>
630
         * </pre>
631
         *
632
         *
633
         */
634
        @XmlAccessorType(XmlAccessType.FIELD)
635
        @XmlType(name = "", propOrder = {
636
            "unidade"
637
        })
638
        public static class Perfil {
639
 
640
            @XmlElement(required = true)
641
            protected List<UnidadeType> unidade;
642
            @XmlAttribute(required = true)
643
            protected 1.5.0/docs/api/java/lang/String.html">String nome;
1507 jmachado 644
            @XmlAttribute
645
            protected 1.5.0/docs/api/java/lang/String.html">String perfilId;
1496 jmachado 646
 
647
            /**
648
             * Gets the value of the unidade property.
649
             *
650
             * <p>
651
             * This accessor method returns a reference to the live list,
652
             * not a snapshot. Therefore any modification you make to the
653
             * returned list will be present inside the JAXB object.
654
             * This is why there is not a <CODE>set</CODE> method for the unidade property.
655
             *
656
             * <p>
657
             * For example, to add a new item, do as follows:
658
             * <pre>
659
             *    getUnidade().add(newItem);
660
             * </pre>
661
             *
662
             *
663
             * <p>
664
             * Objects of the following type(s) are allowed in the list
665
             * {@link UnidadeType }
666
             *
667
             *
668
             */
669
            public List<UnidadeType> getUnidade() {
670
                if (unidade == null) {
671
                    unidade = new ArrayList<UnidadeType>();
672
                }
673
                return this.unidade;
674
            }
675
 
676
            /**
677
             * Gets the value of the nome property.
678
             *
679
             * @return
680
             *     possible object is
681
             *     {@link String }
682
             *    
683
             */
684
            public 1.5.0/docs/api/java/lang/String.html">String getNome() {
685
                return nome;
686
            }
687
 
688
            /**
689
             * Sets the value of the nome property.
690
             *
691
             * @param value
692
             *     allowed object is
693
             *     {@link String }
694
             *    
695
             */
696
            public void setNome(1.5.0/docs/api/java/lang/String.html">String value) {
697
                this.nome = value;
698
            }
699
 
1507 jmachado 700
            /**
701
             * Gets the value of the perfilId property.
702
             *
703
             * @return
704
             *     possible object is
705
             *     {@link String }
706
             *    
707
             */
708
            public 1.5.0/docs/api/java/lang/String.html">String getPerfilId() {
709
                return perfilId;
710
            }
711
 
712
            /**
713
             * Sets the value of the perfilId property.
714
             *
715
             * @param value
716
             *     allowed object is
717
             *     {@link String }
718
             *    
719
             */
720
            public void setPerfilId(1.5.0/docs/api/java/lang/String.html">String value) {
721
                this.perfilId = value;
722
            }
723
 
1496 jmachado 724
        }
725
 
726
    }
727
 
728
}