[MSO-8] Update the maven dependency
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / volumebeans / VolumeRequest.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.volumebeans;
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/volume-request/v1}request-info"/>
50  *           &lt;sequence>
51  *             &lt;element ref="{http://org.openecomp/mso/infra/volume-request/v1}volume-inputs"/>
52  *             &lt;element ref="{http://org.openecomp/mso/infra/volume-request/v1}volume-params" minOccurs="0"/>
53  *             &lt;element ref="{http://org.openecomp/mso/infra/volume-request/v1}volume-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     "volumeInputs",
67     "volumeParams",
68     "volumeOutputs"
69 })
70 @XmlRootElement(name = "volume-request")
71 public class VolumeRequest {
72
73     @XmlElement(name = "request-info", required = true)
74     protected RequestInfo requestInfo;
75     @XmlElement(name = "volume-inputs")
76     protected VolumeInputs volumeInputs;
77     @XmlElement(name = "volume-params")
78     protected Object volumeParams;
79     @XmlElement(name = "volume-outputs")
80     protected VolumeOutputs volumeOutputs;
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 volumeInputs property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link VolumeInputs }
113      *     
114      */
115     public VolumeInputs getVolumeInputs() {
116         return volumeInputs;
117     }
118
119     /**
120      * Sets the value of the volumeInputs property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link VolumeInputs }
125      *     
126      */
127     public void setVolumeInputs(VolumeInputs value) {
128         this.volumeInputs = value;
129     }
130
131     /**
132      * Gets the value of the volumeParams property.
133      * 
134      * @return
135      *     possible object is
136      *     {@link Object }
137      *     
138      */
139     public Object getVolumeParams() {
140         return volumeParams;
141     }
142
143     /**
144      * Sets the value of the volumeParams property.
145      * 
146      * @param value
147      *     allowed object is
148      *     {@link Object }
149      *     
150      */
151     public void setVolumeParams(Object value) {
152         this.volumeParams = value;
153     }
154
155     /**
156      * Gets the value of the volumeOutputs property.
157      * 
158      * @return
159      *     possible object is
160      *     {@link VolumeOutputs }
161      *     
162      */
163     public VolumeOutputs getVolumeOutputs() {
164         return volumeOutputs;
165     }
166
167     /**
168      * Sets the value of the volumeOutputs property.
169      * 
170      * @param value
171      *     allowed object is
172      *     {@link VolumeOutputs }
173      *     
174      */
175     public void setVolumeOutputs(VolumeOutputs value) {
176         this.volumeOutputs = value;
177     }
178
179 }