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