fixing warnings from checkstyle in common-app-api
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / config / EcompErrorInfo.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
21 package org.openecomp.sdc.common.config;
22
23 public class EcompErrorInfo {
24
25     private String type;
26     private String code;
27     private String severity;
28     private String description;
29     private String alarmSeverity;
30
31     public String getType() {
32         return type;
33     }
34
35     public void setType(String type) {
36         this.type = type;
37     }
38
39     public String getCode() {
40         return code;
41     }
42
43     public void setCode(String code) {
44         this.code = code;
45     }
46
47     public String getSeverity() {
48         return severity;
49     }
50
51     public void setSeverity(String severity) {
52         this.severity = severity;
53     }
54
55     public String getDescription() {
56         return description;
57     }
58
59     public void setDescription(String description) {
60         this.description = description;
61     }
62
63     public String getAlarmSeverity() {
64         return alarmSeverity;
65     }
66
67     public void setAlarmSeverity(String alarmSeverity) {
68         this.alarmSeverity = alarmSeverity;
69     }
70
71     public void cloneData(EcompErrorInfo other) {
72         this.type = other.getType();
73         this.severity = other.getSeverity();
74         this.description = other.getDescription();
75         this.code = other.getCode();
76         this.alarmSeverity = other.getAlarmSeverity();
77     }
78 }