com.cx.restclient.sca.dto.RemoteRepositoryInfo 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.sca.dto;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
import java.net.URL;
/**
* Instructs SCA which repository should be scanned.
* In the future this class may be expanded to include repo credentials and commit/branch/tag reference.
*/
@Getter
@Setter
public class RemoteRepositoryInfo implements Serializable {
/**
* A URL for which 'git clone' is possible.
*/
private URL url;
}