com.cx.restclient.ast.dto.sast.SastScanConfigValue 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.ast.dto.sast;
import com.cx.restclient.ast.dto.common.ScanConfigValue;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
/**
* AST-SAST-specific config parameters. Should be expanded with other supported properties.
*/
@Builder
@Getter
@NoArgsConstructor
@AllArgsConstructor
public class SastScanConfigValue implements ScanConfigValue {
private String presetName;
/**
* Must be a string ("true" or "false").
*/
private String incremental;
}