8d0fdcc67d1868a8e250bcdcfe69df7aac29f17d
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / vnfbeans / VnfRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.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>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}vnf-inputs"/>
52  *             &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-params" minOccurs="0"/>
53  *             &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-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     "vnfInputs",
67     "vnfParams",
68     "vnfOutputs"    
69 })
70 @XmlRootElement(name = "vnf-request")
71 public class VnfRequest {
72
73     @XmlElement(name = "request-info", required = true)
74     protected RequestInfo requestInfo;
75     @XmlElement(name = "vnf-inputs")
76     protected VnfInputs vnfInputs;
77     @XmlElement(name = "vnf-params")
78     protected Object vnfParams;
79     @XmlElement(name = "vnf-outputs")
80     protected VnfOutputs vnfOutputs;
81   
82
83     /**
84      * Gets the value of the requestInfo property.
85      * 
86      * @return
87      *     possible object is
88      *     {@link RequestInfo }
89      *     
90      */
91     public RequestInfo getRequestInfo() {
92         return requestInfo;
93     }
94
95     /**
96      * Sets the value of the requestInfo property.
97      * 
98      * @param value
99      *     allowed object is
100      *     {@link RequestInfo }
101      *     
102      */
103     public void setRequestInfo(RequestInfo value) {
104         this.requestInfo = value;
105     }
106
107     /**
108      * Gets the value of the vnfInputs property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link VnfInputs }
113      *     
114      */
115     public VnfInputs getVnfInputs() {
116         return vnfInputs;
117     }
118
119     /**
120      * Sets the value of the vnfInputs property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link VnfInputs }
125      *     
126      */
127     public void setVnfInputs(VnfInputs value) {
128         this.vnfInputs = value;
129     }
130
131     /**
132      * Gets the value of the vnfParams property.
133      * 
134      * @return
135      *     possible object is
136      *     {@link Object }
137      *     
138      */
139     public Object getVnfParams() {
140         return vnfParams;
141     }
142
143     /**
144      * Sets the value of the vnfParams property.
145      * 
146      * @param value
147      *     allowed object is
148      *     {@link Object }
149      *     
150      */
151     public void setVnfParams(Object value) {
152         this.vnfParams = value;
153     }
154
155     /**
156      * Gets the value of the vnfOutputs property.
157      * 
158      * @return
159      *     possible object is
160      *     {@link VnfOutputs }
161      *     
162      */
163     public VnfOutputs getVnfOutputs() {
164         return vnfOutputs;
165     }
166
167     /**
168      * Sets the value of the vnfOutputs property.
169      * 
170      * @param value
171      *     allowed object is
172      *     {@link VnfOutputs }
173      *     
174      */
175     public void setVnfOutputs(VnfOutputs value) {
176         this.vnfOutputs = value;
177     }
178
179  }