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

com.checkmarx.sdk.dto.sca.ScaScanStartHandler Maven / Gradle / Ivy

package com.checkmarx.sdk.dto.sca;

import com.checkmarx.sdk.dto.GitCredentials;
import com.checkmarx.sdk.dto.HandlerRef;
import lombok.Builder;
import lombok.Getter;

@Builder
@Getter
public class ScaScanStartHandler {
    /**
     * For local directory scan - the URL where the zipped directory has been uploaded.
     * For remote repo scan - a URL for which 'git clone' is possible.
     */
    private String url;

    /**
     * For remote repo scan, contains a reference to a specific commit.
     */
    private HandlerRef ref;

    private String username;

    private GitCredentials credentials;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy