com.cx.restclient.sast.dto.CxARMStatusEnum 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
The newest version!
package com.cx.restclient.sast.dto;
/**
* Created by Galn on 07/03/2018.
*/
public enum CxARMStatusEnum {
IN_PROGRESS("InProgress"),
FINISHED("Finished"),
FAILED("Failed"),
NONE("None");
private final String value;
CxARMStatusEnum(String value) {
this.value = value;
}
public String value() {
return this.value;
}
}