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