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 / VnfRequest.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 ref="{http://org.onap/so/infra/vnf-request/v1}request-info"/>
52  *           &lt;sequence>
53  *             &lt;element ref="{http://org.onap/so/infra/vnf-request/v1}vnf-inputs"/>
54  *             &lt;element ref="{http://org.onap/so/infra/vnf-request/v1}vnf-params" minOccurs="0"/>
55  *             &lt;element ref="{http://org.onap/so/infra/vnf-request/v1}vnf-outputs" minOccurs="0"/>
56  *           &lt;/sequence>
57  *       &lt;/sequence>
58  *     &lt;/restriction>
59  *   &lt;/complexContent>
60  * &lt;/complexType>
61  * </pre>
62  * 
63  * 
64  */
65 @XmlAccessorType(XmlAccessType.FIELD)
66 @XmlType(name = "", propOrder = {"requestInfo", "vnfInputs", "vnfParams", "vnfOutputs"})
67 @XmlRootElement(name = "vnf-request")
68 public class VnfRequest {
69
70     @XmlElement(name = "request-info", required = true)
71     protected RequestInfo requestInfo;
72     @XmlElement(name = "vnf-inputs")
73     protected VnfInputs vnfInputs;
74     @XmlElement(name = "vnf-params")
75     protected Object vnfParams;
76     @XmlElement(name = "vnf-outputs")
77     protected VnfOutputs vnfOutputs;
78
79
80     /**
81      * Gets the value of the requestInfo property.
82      * 
83      * @return possible object is {@link RequestInfo }
84      * 
85      */
86     public RequestInfo getRequestInfo() {
87         return requestInfo;
88     }
89
90     /**
91      * Sets the value of the requestInfo property.
92      * 
93      * @param value allowed object is {@link RequestInfo }
94      * 
95      */
96     public void setRequestInfo(RequestInfo value) {
97         this.requestInfo = value;
98     }
99
100     /**
101      * Gets the value of the vnfInputs property.
102      * 
103      * @return possible object is {@link VnfInputs }
104      * 
105      */
106     public VnfInputs getVnfInputs() {
107         return vnfInputs;
108     }
109
110     /**
111      * Sets the value of the vnfInputs property.
112      * 
113      * @param value allowed object is {@link VnfInputs }
114      * 
115      */
116     public void setVnfInputs(VnfInputs value) {
117         this.vnfInputs = value;
118     }
119
120     /**
121      * Gets the value of the vnfParams property.
122      * 
123      * @return possible object is {@link Object }
124      * 
125      */
126     public Object getVnfParams() {
127         return vnfParams;
128     }
129
130     /**
131      * Sets the value of the vnfParams property.
132      * 
133      * @param value allowed object is {@link Object }
134      * 
135      */
136     public void setVnfParams(Object value) {
137         this.vnfParams = value;
138     }
139
140     /**
141      * Gets the value of the vnfOutputs property.
142      * 
143      * @return possible object is {@link VnfOutputs }
144      * 
145      */
146     public VnfOutputs getVnfOutputs() {
147         return vnfOutputs;
148     }
149
150     /**
151      * Sets the value of the vnfOutputs property.
152      * 
153      * @param value allowed object is {@link VnfOutputs }
154      * 
155      */
156     public void setVnfOutputs(VnfOutputs value) {
157         this.vnfOutputs = value;
158     }
159
160 }