com.cx.restclient.sast.dto.ResponseQueueScanStatus 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;
import com.cx.restclient.dto.BaseStatus;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 05/02/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ResponseQueueScanStatus extends BaseStatus {
private long id;
private CxValueObj stage;
private String stageDetails;
private String stepDetails;
private Project project;
private int totalPercent;
private int stagePercent;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public CxValueObj getStage() {
return stage;
}
public void setStage(CxValueObj stage) {
this.stage = stage;
}
public String getStageDetails() {
return stageDetails;
}
public void setStageDetails(String stageDetails) {
this.stageDetails = stageDetails;
}
public String getStepDetails() {
return stepDetails;
}
public void setStepDetails(String stepDetails) {
this.stepDetails = stepDetails;
}
public Project getProject() {
return project;
}
public void setProject(Project project) {
this.project = project;
}
public int getTotalPercent() {
return totalPercent;
}
public void setTotalPercent(int totalPercent) {
this.totalPercent = totalPercent;
}
public int getStagePercent() {
return stagePercent;
}
public void setStagePercent(int stagePercent) {
this.stagePercent = stagePercent;
}
}