com.checkmarx.configprovider.interfaces.SourceControlClient Maven / Gradle / Ivy
package com.checkmarx.configprovider.interfaces;
import com.checkmarx.configprovider.dto.RepoDto;
import java.util.List;
public interface SourceControlClient {
String downloadFileContent(String path, String filename, RepoDto repo);
List getDirectoryFilenames(RepoDto repoResource, String path);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy