aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/ecomplog/Enums/StatusCode.java
blob: 2fdd96f11b40a64f08df167868b580307ede05dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdc.common.ecomplog.Enums;

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

    String statusCode;

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

    public String getStatusCodeEnum(){
        return statusCode;
    }
}