Modify POM parent oparent version as 0.1.1
[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 import com.fasterxml.jackson.annotation.JsonProperty;
20
21 public class ResponseHistoryList {
22         
23         @JsonProperty("status")
24         private String  status;//started;processing;finished;error
25         
26         @JsonProperty("progress")
27         private Integer  progress;//progress (1-100)
28         
29         @JsonProperty("statusDescription")
30         private String  statusDescription;
31         
32         @JsonProperty("errorCode")
33         private Integer errorCode;
34         
35         @JsonProperty("responseId")
36         private Integer responseId;
37         
38         public String getStatus() {
39                 return status;
40         }
41
42         public void setStatus(String status) {
43                 this.status = status;
44         }
45
46         public Integer getProgress() {
47                 return progress;
48         }
49
50         public void setProgress(Integer progress) {
51                 this.progress = progress;
52         }
53
54         public String getStatusDescription() {
55                 return statusDescription;
56         }
57
58         public void setStatusDescription(String statusDescription) {
59                 this.statusDescription = statusDescription;
60         }
61
62         public Integer getErrorCode() {
63                 return errorCode;
64         }
65
66         public void setErrorCode(Integer errorCode) {
67                 this.errorCode = errorCode;
68         }
69
70         public Integer getResponseId() {
71                 return responseId;
72         }
73
74         public void setResponseId(Integer responseId) {
75                 this.responseId = responseId;
76         }
77 }