2  * Copyright 2016-2017, Nokia Corporation
 
   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
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17 package com.nokia.vfcadaptor.vnfmdriver.bo.entity;
 
  21 import com.fasterxml.jackson.annotation.JsonProperty;
 
  23 public class ResponseHistoryList {
 
  26         @JsonProperty("status")
 
  27         private String  status;//started;processing;finished;error
 
  29         @JsonProperty("progress")
 
  30         private Integer  progress;//progress (1-100)
 
  32         @JsonProperty("statusDescription")
 
  33         private String  statusDescription;
 
  35         @JsonProperty("errorCode")
 
  36         private Integer errorCode;
 
  38         @JsonProperty("responseId")
 
  39         private Integer responseId;
 
  43         public String getStatus() {
 
  47         public void setStatus(String status) {
 
  52         public Integer getProgress() {
 
  56         public void setProgress(Integer progress) {
 
  57                 this.progress = progress;
 
  60         public String getStatusDescription() {
 
  61                 return statusDescription;
 
  64         public void setStatusDescription(String statusDescription) {
 
  65                 this.statusDescription = statusDescription;
 
  68         public Integer getErrorCode() {
 
  72         public void setErrorCode(Integer errorCode) {
 
  73                 this.errorCode = errorCode;
 
  76         public Integer getResponseId() {
 
  80         public void setResponseId(Integer responseId) {
 
  81                 this.responseId = responseId;