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