Containerization feature of SO
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / onap / so / adapters / vfc / model / ResponseDescriptor.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  * <br>
24  * <p>
25  * </p>
26  * response model of query operation status
27  * 
28  * @author
29  * @version SDNO 0.5 September 3, 2016
30  */
31 public class ResponseDescriptor {
32
33     String status;
34
35     String progress;
36
37     String statusDescription;
38
39     Integer errorCode;
40
41     Integer responseId;
42
43     /**
44      * @return Returns the status.
45      */
46     public String getStatus() {
47         return status;
48     }
49
50     /**
51      * @param status The status to set.
52      */
53     public void setStatus(String status) {
54         this.status = status;
55     }
56
57     /**
58      * @return Returns the progress.
59      */
60     public String getProgress() {
61         return progress;
62     }
63
64     /**
65      * @param progress The progress to set.
66      */
67     public void setProgress(String progress) {
68         this.progress = progress;
69     }
70
71     /**
72      * @return Returns the statusDescription.
73      */
74     public String getStatusDescription() {
75         return statusDescription;
76     }
77
78     /**
79      * @param statusDescription The statusDescription to set.
80      */
81     public void setStatusDescription(String statusDescription) {
82         this.statusDescription = statusDescription;
83     }
84
85     /**
86      * @return Returns the errorCode.
87      */
88     public Integer getErrorCode() {
89         return errorCode;
90     }
91
92     /**
93      * @param errorCode The errorCode to set.
94      */
95     public void setErrorCode(Integer errorCode) {
96         this.errorCode = errorCode;
97     }
98
99     /**
100      * @return Returns the responseId.
101      */
102     public Integer getResponseId() {
103         return responseId;
104     }
105
106     /**
107      * @param responseId The responseId to set.
108      */
109     public void setResponseId(Integer responseId) {
110         this.responseId = responseId;
111     }
112
113 }