aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/log/enums/Severity.java
blob: 56f35a707ba0b4c84565c050774c15f703450765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openecomp.sdc.common.log.enums;

/**
 * Created by dd4296 on 12/14/2017.
 */
public enum Severity {
    OK(0),
    WARNING(1),
    CRITICAL(2),
    DOWN(3),
    UNREACHABLE(4);

    int severityType;

    Severity(int serveryType) {
        this.severityType = serveryType;
    }

    public int getSeverityType() {
        return severityType;
    }
}