com.cx.restclient.sast.dto.ReportStatusEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-client-common Show documentation
Show all versions of cx-client-common Show documentation
Web client for interaction with Checkmarx SAST, SCA and OSA products
package com.cx.restclient.sast.dto;
/**
* Created by Galn on 07/03/2018.
*/
public enum ReportStatusEnum {
DELETED("Deleted"),
INPROCESS("InProcess"),
CREATED("Created"),
FAILED("Failed");
private final String value;
ReportStatusEnum(String value) {
this.value = value;
}
public String value() {
return this.value;
}
}