com.cx.restclient.ast.dto.sca.ScaScanConfigValue 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.ast.dto.sca;
import com.cx.restclient.ast.dto.common.ScanConfigValue;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import java.util.Map;
/**
* AST-SCA-specific config parameters. Should be expanded with other supported properties.
*/
@Builder
@Getter
@NoArgsConstructor
@AllArgsConstructor
public class ScaScanConfigValue implements ScanConfigValue {
private String environmentVariables;
private String sastProjectId;
private String sastServerUrl;
private String sastUsername;
private String sastPassword;
private String sastProjectName;
}