Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / networkbeans / NetworkOutputs.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="network-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
50  *         &lt;element name="network-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *       &lt;/sequence>
52  *     &lt;/restriction>
53  *   &lt;/complexContent>
54  * &lt;/complexType>
55  * </pre>
56  * 
57  * 
58  */
59 @XmlAccessorType(XmlAccessType.FIELD)
60 @XmlType(name = "", propOrder = {
61     "networkId",
62     "networkName"
63 })
64 @XmlRootElement(name = "network-outputs")
65 public class NetworkOutputs {
66
67     @XmlElement(name = "network-id", required = true)
68     protected String networkId;
69     @XmlElement(name = "network-name", required = true)
70     protected String networkName;
71
72     /**
73      * Gets the value of the networkId property.
74      * 
75      * @return
76      *     possible object is
77      *     {@link String }
78      *     
79      */
80     public String getNetworkId() {
81         return networkId;
82     }
83
84     /**
85      * Sets the value of the networkId property.
86      * 
87      * @param value
88      *     allowed object is
89      *     {@link String }
90      *     
91      */
92     public void setNetworkId(String value) {
93         this.networkId = value;
94     }
95
96     /**
97      * Gets the value of the networkName property.
98      * 
99      * @return
100      *     possible object is
101      *     {@link String }
102      *     
103      */
104     public String getNetworkName() {
105         return networkName;
106     }
107
108     /**
109      * Sets the value of the networkName property.
110      * 
111      * @param value
112      *     allowed object is
113      *     {@link String }
114      *     
115      */
116     public void setNetworkName(String value) {
117         this.networkName = value;
118     }
119
120 }