com.cx.restclient.sast.dto.CreateReportRequest 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.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 12/02/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class CreateReportRequest {
private long scanId;
private String reportType;
public CreateReportRequest(long scanId, String reportType) {
this.scanId = scanId;
this.reportType = reportType;
}
public String getReportType() {
return reportType;
}
public void setReportType(String reportType) {
this.reportType = reportType;
}
public long getScanId() {
return scanId;
}
public void setScanId(long scanId) {
this.scanId = scanId;
}
}