com.cx.restclient.sast.dto.ScanSettingRequest 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.sast.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 05/02/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ScanSettingRequest {
private long projectId;
private long presetId;
private long engineConfigurationId;
public long getProjectId() {
return projectId;
}
public void setProjectId(long projectId) {
this.projectId = projectId;
}
public long getPresetId() {
return presetId;
}
public void setPresetId(long presetId) {
this.presetId = presetId;
}
public long getEngineConfigurationId() {
return engineConfigurationId;
}
public void setEngineConfigurationId(long engineConfigurationId) {
this.engineConfigurationId = engineConfigurationId;
}
}