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 javax.xml.bind.annotation.XmlAccessType;
32 import javax.xml.bind.annotation.XmlAccessorType;
33 import javax.xml.bind.annotation.XmlAttribute;
34 import javax.xml.bind.annotation.XmlRootElement;
35 import javax.xml.bind.annotation.XmlType;
36
37
38 /**
39 * <p>Java class for anonymous complex type.
40 *
41 * <p>The following schema fragment specifies the expected content contained within this class.
42 *
43 * <pre>
44 * <complexType>
45 * <complexContent>
46 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
47 * <attribute name=namecol use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
48 * </restriction>
49 * </complexContent>
50 * </complexType>
51 * </pre>
52 *
53 *
54 */
55 @XmlAccessorType(XmlAccessType.FIELD)
56 @XmlType(name = "")
57 @XmlRootElement(name = "group")
58 public class Group {
59
60 @XmlAttribute(required = true)
61 protected String name;
62
63 /**
64 * Gets the value of the name property.
65 *
66 * @return
67 * possible object is
68 * {@link String }
69 *
70 */
71 public String getName() {
72 return name;
73 }
74
75 /**
76 * Sets the value of the name property.
77 *
78 * @param value
79 * allowed object is
80 * {@link String }
81 *
82 */
83 public void setName(String value) {
84 this.name = value;
85 }
86
87 }