
com.capitalone.dashboard.repository.PipelineRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.repository;
import com.capitalone.dashboard.model.Pipeline;
import org.bson.types.ObjectId;
import java.util.List;
public interface PipelineRepository extends QueryRepository {
Pipeline findByCollectorItemId(ObjectId collectorItemId);
List findByCollectorItemIdIn(List collectorItemIds);
}