b9bbd6c479de0fb5b076ff9440ff6bad661bdd86
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / vnfmdriver / bo / entity / ResponseHistoryList.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.vnfmdriver.bo.entity;
18
19
20
21 import com.fasterxml.jackson.annotation.JsonProperty;
22
23 public class ResponseHistoryList {
24
25         
26         @JsonProperty("status")
27         private String  status;//started;processing;finished;error
28         
29         @JsonProperty("progress")
30         private Integer  progress;//progress (1-100)
31         
32         @JsonProperty("statusDescription")
33         private String  statusDescription;
34         
35         @JsonProperty("errorCode")
36         private Integer errorCode;
37         
38         @JsonProperty("responseId")
39         private Integer responseId;
40         
41         
42
43         public String getStatus() {
44                 return status;
45         }
46
47         public void setStatus(String status) {
48                 this.status = status;
49         }
50
51         
52         public Integer getProgress() {
53                 return progress;
54         }
55
56         public void setProgress(Integer progress) {
57                 this.progress = progress;
58         }
59
60         public String getStatusDescription() {
61                 return statusDescription;
62         }
63
64         public void setStatusDescription(String statusDescription) {
65                 this.statusDescription = statusDescription;
66         }
67
68         public Integer getErrorCode() {
69                 return errorCode;
70         }
71
72         public void setErrorCode(Integer errorCode) {
73                 this.errorCode = errorCode;
74         }
75
76         public Integer getResponseId() {
77                 return responseId;
78         }
79
80         public void setResponseId(Integer responseId) {
81                 this.responseId = responseId;
82         }
83
84         
85
86         
87         
88         
89         
90         
91 }