Improve test coverage
[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_INTERNAL_SERVER_ERROR = 500;
29     CambriaOperationStatus operationStatus;
30     Integer httpCode;
31     List<String> variables = new ArrayList<>();
32
33     public CambriaErrorResponse() {
34         super();
35     }
36
37     public CambriaErrorResponse(CambriaOperationStatus operationStatus) {
38         super();
39         this.operationStatus = operationStatus;
40     }
41
42     public CambriaErrorResponse(CambriaOperationStatus operationStatus, Integer httpCode) {
43         super();
44         this.operationStatus = operationStatus;
45         this.httpCode = httpCode;
46     }
47
48     public CambriaOperationStatus getOperationStatus() {
49         return operationStatus;
50     }
51
52     public void setOperationStatus(CambriaOperationStatus operationStatus) {
53         this.operationStatus = operationStatus;
54     }
55
56     public Integer getHttpCode() {
57         return httpCode;
58     }
59
60     public void setHttpCode(Integer httpCode) {
61         this.httpCode = httpCode;
62     }
63
64     public void addVariable(String variable) {
65         variables.add(variable);
66     }
67
68     public List<String> getVariables() {
69         return variables;
70     }
71
72     public void setVariables(List<String> variables) {
73         this.variables = variables;
74     }
75
76     @Override
77     public String toString() {
78         return "CambriaErrorResponse [operationStatus=" + operationStatus + ", httpCode=" + httpCode + ", variables=" + variables + "]";
79     }
80 }