Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / networkbeans / NetworkType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 //
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
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: 2015.09.03 at 02:02:13 PM EDT 
26 //
27
28
29 package org.openecomp.mso.apihandlerinfra.networkbeans;
30
31
32 import javax.xml.bind.annotation.XmlAccessType;
33 import javax.xml.bind.annotation.XmlAccessorType;
34 import javax.xml.bind.annotation.XmlElement;
35 import javax.xml.bind.annotation.XmlRootElement;
36 import javax.xml.bind.annotation.XmlType;
37
38
39 /**
40  * <p>Java class for anonymous complex type.
41  * 
42  * <p>The following schema fragment specifies the expected content contained within this class.
43  * 
44  * <pre>
45  * &lt;complexType>
46  *   &lt;complexContent>
47  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48  *       &lt;sequence>
49  *         &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
50  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *       &lt;/sequence>
53  *     &lt;/restriction>
54  *   &lt;/complexContent>
55  * &lt;/complexType>
56  * </pre>
57  * 
58  * 
59  */
60 @XmlAccessorType(XmlAccessType.FIELD)
61 @XmlType(name = "", propOrder = {
62     "type",
63     "id",
64     "description"
65 })
66 @XmlRootElement(name = "network-type")
67 public class NetworkType {
68
69     @XmlElement(required = true)
70     protected String type;
71     @XmlElement(required = true)
72     protected String id;
73     @XmlElement(required = true)
74     protected String description;
75
76     /**
77      * Gets the value of the type property.
78      * 
79      * @return
80      *     possible object is
81      *     {@link String }
82      *     
83      */
84     public String getType() {
85         return type;
86     }
87
88     /**
89      * Sets the value of the type property.
90      * 
91      * @param value
92      *     allowed object is
93      *     {@link String }
94      *     
95      */
96     public void setType(String value) {
97         this.type = value;
98     }
99
100     /**
101      * Gets the value of the id property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getId() {
109         return id;
110     }
111
112     /**
113      * Sets the value of the id property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setId(String value) {
121         this.id = value;
122     }
123
124     /**
125      * Gets the value of the description property.
126      * 
127      * @return
128      *     possible object is
129      *     {@link String }
130      *     
131      */
132     public String getDescription() {
133         return description;
134     }
135
136     /**
137      * Sets the value of the description property.
138      * 
139      * @param value
140      *     allowed object is
141      *     {@link String }
142      *     
143      */
144     public void setDescription(String value) {
145         this.description = value;
146     }
147
148 }