com.cx.restclient.dto.Status 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.dto;
/**
* Created by: Dorg.
* Date: 06/10/2016.
*/
public enum Status {
IN_PROGRESS("In progress"),
SUCCEEDED("Succeeded"),
FAILED("Failed");
private String value;
public String value() {
return value;
}
Status(String value) {
this.value = value;
}
}