1 /**
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 *
6 * If it is not possible or desirable to put the notice in a particular
7 * file, then You may include the notice in a location (such as a LICENSE
8 * file in a relevant directory) where a recipient would be likely to look
9 * for such a notice.
10
11 *
12 */
13
14 /* ---------------------------------------------------------------------------
15 * U.S. Government, Department of the Army
16 * Army Materiel Command
17 * Research Development Engineering Command
18 * Communications Electronics Research Development and Engineering Center
19 * ---------------------------------------------------------------------------
20 */
21 //
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
24 // Any modifications to this file will be lost upon recompilation of the source schema.
25 // Generated on: 2012.08.30 at 12:37:46 PM EDT
26 //
27
28
29 package org.miloss.fgsms.auxsrv.status;
30
31 import java.util.ArrayList;
32 import java.util.List;
33 import javax.xml.bind.annotation.XmlAccessType;
34 import javax.xml.bind.annotation.XmlAccessorType;
35 import javax.xml.bind.annotation.XmlElement;
36 import javax.xml.bind.annotation.XmlRootElement;
37 import javax.xml.bind.annotation.XmlType;
38
39
40 /**
41 * <p>Java class for anonymous complex type.
42 *
43 * <p>The following schema fragment specifies the expected content contained within this class.
44 *
45 * <pre>
46 * <complexType>
47 * <complexContent>
48 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
49 * <sequence>
50 * <element ref="{}group" maxOccurs="unbounded"/>
51 * </sequence>
52 * </restriction>
53 * </complexContent>
54 * </complexType>
55 * </pre>
56 *
57 *
58 */
59 @XmlAccessorType(XmlAccessType.FIELD)
60 @XmlType(name = "", propOrder = {
61 "group"
62 })
63 @XmlRootElement(name = "group-names")
64 public class GroupNames {
65
66 @XmlElement(required = true)
67 protected List<Group> group;
68
69 /**
70 * Gets the value of the group property.
71 *
72 * <p>
73 * This accessor method returns a reference to the live list,
74 * not a snapshot. Therefore any modification you make to the
75 * returned list will be present inside the JAXB object.
76 * This is why there is not a <CODE>set</CODE> method for the group property.
77 *
78 * <p>
79 * For example, to add a new item, do as follows:
80 * <pre>
81 * getGroup().add(newItem);
82 * </pre>
83 *
84 *
85 * <p>
86 * Objects of the following type(s) are allowed in the list
87 * {@link Group }
88 *
89 *
90 */
91 public List<Group> getGroup() {
92 if (group == null) {
93 group = new ArrayList<Group>();
94 }
95 return this.group;
96 }
97
98 }