com.checkmarx.sdk.dto.sca.SCAResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
package com.checkmarx.sdk.dto.sca;
import com.cx.restclient.sca.dto.report.Finding;
import com.cx.restclient.sca.dto.report.Package;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
public class SCAResults {
private String scanId;
private Summary summary;
private String webReportLink;
private List findings;
private List packages;
}