Implant vid-app-common org.onap.vid.job (main and test)
[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         public String requestType;
57
58         /**
59          * The instance ids.
60          */
61         public InstanceReferences instanceReferences;
62
63
64         /**
65          * The request details.
66          */
67         public RequestDetails requestDetails;
68
69         /**
70          * The request status.
71          */
72         public RequestStatus requestStatus;
73
74         /**
75          * The time of start.
76          */
77         public String startTime;
78
79     }
80
81     @JsonIgnoreProperties(ignoreUnknown = true)
82     public static class InstanceReferences {
83
84         public String serviceInstanceId;
85     }
86
87     @JsonIgnoreProperties(ignoreUnknown = true)
88     public static class RequestDetails {
89
90         public RequestInfo requestInfo;
91     }
92
93     @JsonIgnoreProperties(ignoreUnknown = true)
94     public static class RequestInfo {
95
96         public String instanceName;
97     }
98
99
100
101 }