All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cx.restclient.ast.dto.sast.SastScanConfigValue Maven / Gradle / Ivy

There is a newer version: 2024.3.26
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy