Refactoring Consolidation Service
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / log / enums / Severity.java
1 package org.openecomp.sdc.common.log.enums;
2
3 /**
4  * Created by dd4296 on 12/14/2017.
5  */
6 public enum Severity {
7     OK(0),
8     WARNING(1),
9     CRITICAL(2),
10     DOWN(3),
11     UNREACHABLE(4);
12
13     int severityType;
14
15     Severity(int serveryType) {
16         this.severityType = serveryType;
17     }
18
19     public int getSeverityType() {
20         return severityType;
21     }
22 }
23