com.cx.restclient.sca.dto.CxSCAResolvingConfiguration 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.sca.dto;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@Getter
@Setter
public class CxSCAResolvingConfiguration implements Serializable {
private List Manifests = new ArrayList<>();
private List Fingerprints = new ArrayList<>();
public String getManifestsIncludePattern(){
return String.join(",", Manifests);
}
public String getFingerprintsIncludePattern(){
return String.join(",", Fingerprints);
}
}