com.capitalone.dashboard.repository.GitlabGitCollectorRepository 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.repository;
import java.util.List;
import org.bson.types.ObjectId;
import org.springframework.data.mongodb.repository.Query;
import com.capitalone.dashboard.model.GitlabGitRepo;
/**
* Created by benathmane on 20/06/16.
*/
public interface GitlabGitCollectorRepository extends BaseCollectorItemRepository {
@Query(value = "{'collectorId' : ?0, enabled: true}")
List findEnabledGitlabRepos(ObjectId collectorId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy