com.cx.restclient.sast.dto.ScanWithSettingsResponse 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;
public class ScanWithSettingsResponse {
private int id;
public ScanWithSettingsResponse(int id) {
this.id = id;
}
public ScanWithSettingsResponse() {
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}