com.cx.restclient.ast.dto.common.ScanStartHandler 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.common;
import lombok.Builder;
import lombok.Getter;
@Builder
@Getter
public class ScanStartHandler {
/**
* 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;
}