Containerization feature of SO
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / onap / so / adapters / vfc / model / NsProgressStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. 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.so.adapters.vfc.model;
22
23 import java.util.List;
24
25 /**
26  * <br>
27  * <p>
28  * </p>
29  * response model of query operation status
30  * 
31  * @author
32  * @version ONAP Amsterdam Release 2017-9-6
33  */
34 public class NsProgressStatus {
35
36     String jobId;
37
38     ResponseDescriptor responseDescriptor;
39
40     List<ResponseDescriptor> responseHistoryList;
41
42     /**
43      * @return Returns the jobId.
44      */
45     public String getJobId() {
46         return jobId;
47     }
48
49     /**
50      * @param jobId The jobId to set.
51      */
52     public void setJobId(String jobId) {
53         this.jobId = jobId;
54     }
55
56     /**
57      * @return Returns the responseDescriptor.
58      */
59     public ResponseDescriptor getResponseDescriptor() {
60         return responseDescriptor;
61     }
62
63     /**
64      * @param responseDescriptor The responseDescriptor to set.
65      */
66     public void setResponseDescriptor(ResponseDescriptor responseDescriptor) {
67         this.responseDescriptor = responseDescriptor;
68     }
69
70     /**
71      * @return Returns the responseHistoryList.
72      */
73     public List<ResponseDescriptor> getResponseHistoryList() {
74         return responseHistoryList;
75     }
76
77     /**
78      * @param responseHistoryList The responseHistoryList to set.
79      */
80     public void setResponseHistoryList(List<ResponseDescriptor> responseHistoryList) {
81         this.responseHistoryList = responseHistoryList;
82     }
83
84 }