![JAR search and dependency download from the Maven repository](/logo.png)
com.capitalone.dashboard.collecteur.GitlabGitClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab-git-collector Show documentation
Show all versions of gitlab-git-collector Show documentation
Gitlab Collector Microservice collecting stats from Git
The newest version!
package com.capitalone.dashboard.collecteur;
import java.util.List;
import com.capitalone.dashboard.model.Commit;
import com.capitalone.dashboard.model.GitlabGitRepo;
/**
* Created by benathmane on 23/06/16.
*/
/**
* Client for fetching commit history from Gitlab
*/
public interface GitlabGitClient {
/**
* Fetch all of the commits.
*
* @param repo GitlabGitRepo
* @return all commits in repo
*/
List getCommits(GitlabGitRepo repo, boolean firstRun);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy