12bf20549847f1eb67a46215690224996033cae7
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / rest / AsyncRequestStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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 package org.onap.vid.mso.rest;
22
23
24 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
25 import com.fasterxml.jackson.annotation.JsonInclude;
26
27 /**
28  * Represent response for: GET orchestrationRequests
29  */
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 @JsonIgnoreProperties(ignoreUnknown = true)
32 public class AsyncRequestStatus  {
33
34     public Request request;
35
36     public AsyncRequestStatus(Request request) {
37         this.request = request;
38     }
39
40     public AsyncRequestStatus() {
41
42     }
43
44     @JsonIgnoreProperties(ignoreUnknown = true)
45     public static class Request {
46
47         public Request(RequestStatus requestStatus) {
48             this.requestStatus = requestStatus;
49         }
50
51         public Request() {
52         }
53
54         public String requestId;
55         public String requestScope;
56
57         /**
58          * The instance ids.
59          */
60         public InstanceReferences instanceReferences;
61
62
63         /**
64          * The request details.
65          */
66         public RequestDetails requestDetails;
67
68         /**
69          * The request status.
70          */
71         public RequestStatus requestStatus;
72
73         /**
74          * The time of start.
75          */
76         public String startTime;
77
78     }
79
80     @JsonIgnoreProperties(ignoreUnknown = true)
81     public static class InstanceReferences {
82
83         public String serviceInstanceId;
84     }
85
86     @JsonIgnoreProperties(ignoreUnknown = true)
87     public static class RequestDetails {
88
89         public RequestInfo requestInfo;
90     }
91
92     @JsonIgnoreProperties(ignoreUnknown = true)
93     public static class RequestInfo {
94
95         public String instanceName;
96     }
97
98
99
100 }