149ea2286a883673118aae41d8c2dc7aecfdb418
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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.openecomp.sdc.be.components.distribution.engine;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.openecomp.sdc.be.distribution.api.client.CambriaOperationStatus;
27
28 public class CambriaErrorResponse {
29
30         public static final int HTTP_OK = 200;
31
32         public static final int HTTP_INTERNAL_SERVER_ERROR = 500;
33
34         CambriaOperationStatus operationStatus;
35         Integer httpCode;
36         List<String> variables = new ArrayList<String>();
37
38         public CambriaErrorResponse() {
39                 super();
40         }
41
42         public CambriaErrorResponse(CambriaOperationStatus operationStatus) {
43                 super();
44                 this.operationStatus = operationStatus;
45         }
46
47         public CambriaErrorResponse(CambriaOperationStatus operationStatus, Integer httpCode) {
48                 super();
49                 this.operationStatus = operationStatus;
50                 this.httpCode = httpCode;
51         }
52
53         public CambriaOperationStatus getOperationStatus() {
54                 return operationStatus;
55         }
56
57         public void setOperationStatus(CambriaOperationStatus operationStatus) {
58                 this.operationStatus = operationStatus;
59         }
60
61         public Integer getHttpCode() {
62                 return httpCode;
63         }
64
65         public void setHttpCode(Integer httpCode) {
66                 this.httpCode = httpCode;
67         }
68
69         public void addVariable(String variable) {
70                 variables.add(variable);
71         }
72
73         public List<String> getVariables() {
74                 return variables;
75         }
76
77         public void setVariables(List<String> variables) {
78                 this.variables = variables;
79         }
80
81         @Override
82         public String toString() {
83                 return "CambriaErrorResponse [operationStatus=" + operationStatus + ", httpCode=" + httpCode + ", variables=" + variables + "]";
84         }
85
86 }