com.cx.restclient.osa.dto.OSAScanStatus 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.osa.dto;
import com.cx.restclient.dto.BaseStatus;
import com.cx.restclient.dto.Status;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.io.Serializable;
import java.util.List;
/**
* Created by: Dorg.
* Date: 06/10/2016.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class OSAScanStatus extends BaseStatus implements Serializable {
private String id;
private String startAnalyzeTime;
private String endAnalyzeTime;
private String origin;
private OSAScanState state;
private List sharedSourceLocationPaths;
private Status status;
@Override
public String getBaseId() {
return id;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Status getStatus() {
return status;
}
public void setStatus(Status status) {
this.status = status;
}
public void setBaseId(String baseId) {
this.id = baseId;
}
public String getStartAnalyzeTime() {
return startAnalyzeTime;
}
public void setStartAnalyzeTime(String startAnalyzeTime) {
this.startAnalyzeTime = startAnalyzeTime;
}
public String getEndAnalyzeTime() {
return endAnalyzeTime;
}
public void setEndAnalyzeTime(String endAnalyzeTime) {
this.endAnalyzeTime = endAnalyzeTime;
}
public String getOrigin() {
return origin;
}
public void setOrigin(String origin) {
this.origin = origin;
}
public OSAScanState getState() {
return state;
}
public void setState(OSAScanState state) {
this.state = state;
}
public List getSharedSourceLocationPaths() {
return sharedSourceLocationPaths;
}
public void setSharedSourceLocationPaths(List sharedSourceLocationPaths) {
this.sharedSourceLocationPaths = sharedSourceLocationPaths;
}
public Status getBaseStatus() {
return status;
}
public void setBaseStatus(Status baseStatus) {
this.status = baseStatus;
}
}