com.cx.restclient.osa.dto.OSAScanStatusEnum 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.osa.dto;
/**
* Created by: Dorg.
* Date: 06/10/2016.
*/
public enum OSAScanStatusEnum {
NOT_STARTED(0, "NotStarted"),
IN_PROGRESS(1, "In progress"),
SUCCEEDED(2, "Succeeded"),
FAILED(3, "Failed");
public final int num;
private String uiValue;
public int getNum() {
return num;
}
public String uiValue() {
return uiValue;
}
OSAScanStatusEnum(int i, String uiValue) {
this.num = i;
this.uiValue = uiValue;
}
}