Catalog alignment
[sdc.git] / common-app-logging / src / main / java / org / openecomp / sdc / common / log / utils / EcompLogErrorCode.java
1 package org.openecomp.sdc.common.log.utils;
2
3
4 public enum EcompLogErrorCode {
5     E_399("Internal Invalid Object. Description: %s"),
6     E_210(
7             "Connection problem towards U-EB server. Reason: %s");
8
9
10     String description;
11     String resolution;
12
13     EcompLogErrorCode(String description, String resolution) {
14         this.description = description;
15         this.resolution = resolution;
16     }
17
18     EcompLogErrorCode(String description) {
19         this.description = description;
20     }
21
22     public String getDescription() {
23         return description;
24     }
25
26     public void setDescription(String description) {
27         this.description = description;
28     }
29
30     public String getResolution() {
31         return resolution;
32     }
33
34     public void setResolution(String resolution) {
35         this.resolution = resolution;
36     }
37
38     }