Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / networkbeans / NetworkRequest.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 ref="{http://org.openecomp/mso/infra/vnf-request/v1}request-info"/>
50  *           &lt;sequence>
51  *             &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}network-inputs"/>
52  *             &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}network-params" minOccurs="0"/>
53  *             &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}network-outputs" minOccurs="0"/>
54  *           &lt;/sequence>
55  *        &lt;/sequence>
56  *     &lt;/restriction>
57  *   &lt;/complexContent>
58  * &lt;/complexType>
59  * </pre>
60  * 
61  * 
62  */
63 @XmlAccessorType(XmlAccessType.FIELD)
64 @XmlType(name = "", propOrder = {
65     "requestInfo",
66     "networkInputs",
67     "networkParams",
68     "networkOutputs"
69 })
70 @XmlRootElement(name = "network-request")
71 public class NetworkRequest {
72
73     @XmlElement(name = "request-info", required = true)
74     protected RequestInfo requestInfo;
75     @XmlElement(name = "network-inputs")
76     protected NetworkInputs networkInputs;
77     @XmlElement(name = "network-params")
78     protected Object networkParams;
79     @XmlElement(name = "network-outputs")
80     protected NetworkOutputs networkOutputs;
81
82     /**
83      * Gets the value of the requestInfo property.
84      * 
85      * @return
86      *     possible object is
87      *     {@link RequestInfo }
88      *     
89      */
90     public RequestInfo getRequestInfo() {
91         return requestInfo;
92     }
93
94     /**
95      * Sets the value of the requestInfo property.
96      * 
97      * @param value
98      *     allowed object is
99      *     {@link RequestInfo }
100      *     
101      */
102     public void setRequestInfo(RequestInfo value) {
103         this.requestInfo = value;
104     }
105
106    
107     /**
108      * Gets the value of the networkInputs property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link NetworkInputs }
113      *     
114      */
115     public NetworkInputs getNetworkInputs() {
116         return networkInputs;
117     }
118
119     /**
120      * Sets the value of the networkInputs property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link NetworkInputs }
125      *     
126      */
127     public void setNetworkInputs(NetworkInputs value) {
128         this.networkInputs = value;
129     }
130
131     /**
132      * Gets the value of the networkParams property.
133      * 
134      * @return
135      *     possible object is
136      *     {@link Object }
137      *     
138      */
139     public Object getNetworkParams() {
140         return networkParams;
141     }
142
143     /**
144      * Sets the value of the networkParams property.
145      * 
146      * @param value
147      *     allowed object is
148      *     {@link Object }
149      *     
150      */
151     public void setNetworkParams(Object value) {
152         this.networkParams = value;
153     }
154
155     /**
156      * Gets the value of the networkOutputs property.
157      * 
158      * @return
159      *     possible object is
160      *     {@link NetworkOutputs }
161      *     
162      */
163     public NetworkOutputs getNetworkOutputs() {
164         return networkOutputs;
165     }
166
167     /**
168      * Sets the value of the networkOutputs property.
169      * 
170      * @param value
171      *     allowed object is
172      *     {@link NetworkOutputs }
173      *     
174      */
175     public void setNetworkOutputs(NetworkOutputs value) {
176         this.networkOutputs = value;
177     }
178
179 }