Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / vnfbeans / VnfType.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.onap.so.apihandlerinfra.vnfbeans;
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>
41  * Java class for anonymous complex type.
42  * 
43  * <p>
44  * The following schema fragment specifies the expected content contained within this class.
45  * 
46  * <pre>
47  * &lt;complexType>
48  *   &lt;complexContent>
49  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
50  *       &lt;sequence>
51  *         &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
54  *       &lt;/sequence>
55  *     &lt;/restriction>
56  *   &lt;/complexContent>
57  * &lt;/complexType>
58  * </pre>
59  * 
60  * 
61  */
62 @XmlAccessorType(XmlAccessType.FIELD)
63 @XmlType(name = "", propOrder = {"type", "id", "description"})
64 @XmlRootElement(name = "vnf-type")
65 public class VnfType {
66
67     @XmlElement(required = true)
68     protected String type;
69     @XmlElement(required = true)
70     protected String id;
71     @XmlElement(required = true)
72     protected String description;
73
74     /**
75      * Gets the value of the type property.
76      * 
77      * @return possible object is {@link String }
78      * 
79      */
80     public String getType() {
81         return type;
82     }
83
84     /**
85      * Sets the value of the type property.
86      * 
87      * @param value allowed object is {@link String }
88      * 
89      */
90     public void setType(String value) {
91         this.type = value;
92     }
93
94     /**
95      * Gets the value of the id property.
96      * 
97      * @return possible object is {@link String }
98      * 
99      */
100     public String getId() {
101         return id;
102     }
103
104     /**
105      * Sets the value of the id property.
106      * 
107      * @param value allowed object is {@link String }
108      * 
109      */
110     public void setId(String value) {
111         this.id = value;
112     }
113
114     /**
115      * Gets the value of the description property.
116      * 
117      * @return possible object is {@link String }
118      * 
119      */
120     public String getDescription() {
121         return description;
122     }
123
124     /**
125      * Sets the value of the description property.
126      * 
127      * @param value allowed object is {@link String }
128      * 
129      */
130     public void setDescription(String value) {
131         this.description = value;
132     }
133
134 }