com.checkmarx.sdk.dto.SummaryResults 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;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class SummaryResults {
private int highVulnerabilityCount = 0;
private int mediumVulnerabilityCount = 0;
private int lowVulnerabilityCount = 0;
}