summaryrefslogtreecommitdiffstats
path: root/common-app-logging/src/main/java/org/openecomp/sdc/common/log/enums/StatusCode.java
blob: 8ede6f9d6e6716a899647db426d36f1dc8443f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.openecomp.sdc.common.log.enums;

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

  String statusCode;

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

  public String getStatusCodeEnum() {
    return statusCode;
  }
}