2af0a02d17fb45bc300c02ac4ad5052fe56b4c9f
[so.git] /
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 name="request-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
52  *         &lt;element name="action" type="{http://org.onap/so/infra/vnf-request/v1}action-type"/>
53  *         &lt;element name="request-status" type="{http://org.onap/so/infra/vnf-request/v1}request-status-type" minOccurs="0"/>
54  *         &lt;element name="status-message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
55  *         &lt;element name="progress" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
56  *         &lt;element name="start-time" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
57  *         &lt;element name="end-time" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
58  *         &lt;element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
59  *       &lt;/sequence>
60  *     &lt;/restriction>
61  *   &lt;/complexContent>
62  * &lt;/complexType>
63  * </pre>
64  *
65  *
66  */
67 @XmlAccessorType(XmlAccessType.FIELD)
68 @XmlType(name = "", propOrder = {"requestId", "action", "requestStatus", "statusMessage", "progress", "startTime",
69         "endTime", "source"})
70 @XmlRootElement(name = "request-info")
71 public class RequestInfo {
72
73     @XmlElement(name = "request-id")
74     protected String requestId;
75     @XmlElement(required = true)
76     protected ActionType action;
77     @XmlElement(name = "request-status")
78     protected RequestStatusType requestStatus;
79     @XmlElement(name = "status-message")
80     protected String statusMessage;
81     protected String progress;
82     @XmlElement(name = "start-time")
83     protected String startTime;
84     @XmlElement(name = "end-time")
85     protected String endTime;
86     protected String source;
87
88     /**
89      * Gets the value of the requestId property.
90      *
91      * @return possible object is {@link String }
92      *
93      */
94     public String getRequestId() {
95         return requestId;
96     }
97
98     /**
99      * Sets the value of the requestId property.
100      *
101      * @param value allowed object is {@link String }
102      *
103      */
104     public void setRequestId(String value) {
105         this.requestId = value;
106     }
107
108     /**
109      * Gets the value of the action property.
110      *
111      * @return possible object is {@link ActionType }
112      *
113      */
114     public ActionType getAction() {
115         return action;
116     }
117
118     /**
119      * Sets the value of the action property.
120      *
121      * @param value allowed object is {@link ActionType }
122      *
123      */
124     public void setAction(ActionType value) {
125         this.action = value;
126     }
127
128     /**
129      * Gets the value of the requestStatus property.
130      *
131      * @return possible object is {@link RequestStatusType }
132      *
133      */
134     public RequestStatusType getRequestStatus() {
135         return requestStatus;
136     }
137
138     /**
139      * Sets the value of the requestStatus property.
140      *
141      * @param value allowed object is {@link RequestStatusType }
142      *
143      */
144     public void setRequestStatus(RequestStatusType value) {
145         this.requestStatus = value;
146     }
147
148     /**
149      * Gets the value of the statusMessage property.
150      *
151      * @return possible object is {@link String }
152      *
153      */
154     public String getStatusMessage() {
155         return statusMessage;
156     }
157
158     /**
159      * Sets the value of the statusMessage property.
160      *
161      * @param value allowed object is {@link String }
162      *
163      */
164     public void setStatusMessage(String value) {
165         this.statusMessage = value;
166     }
167
168     /**
169      * Gets the value of the progress property.
170      *
171      * @return possible object is {@link Integer }
172      *
173      */
174     public String getProgress() {
175         return progress;
176     }
177
178     /**
179      * Sets the value of the progress property.
180      *
181      * @param value allowed object is {@link Integer }
182      *
183      */
184     public void setProgress(String value) {
185         this.progress = value;
186     }
187
188     /**
189      * Gets the value of the startTime property.
190      *
191      * @return possible object is {@link String }
192      *
193      */
194     public String getStartTime() {
195         return startTime;
196     }
197
198     /**
199      * Sets the value of the startTime property.
200      *
201      * @param value allowed object is {@link String }
202      *
203      */
204     public void setStartTime(String value) {
205         this.startTime = value;
206     }
207
208     /**
209      * Gets the value of the endTime property.
210      *
211      * @return possible object is {@link String }
212      *
213      */
214     public String getEndTime() {
215         return endTime;
216     }
217
218     /**
219      * Sets the value of the endTime property.
220      *
221      * @param value allowed object is {@link String }
222      *
223      */
224     public void setEndTime(String value) {
225         this.endTime = value;
226     }
227
228     /**
229      * Gets the value of the source property.
230      *
231      * @return possible object is {@link String }
232      *
233      */
234     public String getSource() {
235         return source;
236     }
237
238     /**
239      * Sets the value of the source property.
240      *
241      * @param value allowed object is {@link String }
242      *
243      */
244     public void setSource(String value) {
245         this.source = value;
246     }
247
248 }