summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/common/onaplog/Enums/StatusCode.java
blob: 05bbbb7392a08a99590d13144c6cb081cb1024c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.sdc.common.onaplog.Enums;

public enum StatusCode {
    ERROR("ERROR"),
    COMPLETE("COMPLETE");

    private String text;

    StatusCode(String text) {
        this.text = text;
    }

    public String getText() {
        return text;
    }
}