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